Fixed the type of a signal handler.

This commit is contained in:
Bruce Evans 1998-10-17 14:47:00 +00:00
parent f59f5db544
commit 234e2f5964
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40494

View file

@ -94,7 +94,7 @@ static FILE *newlog = NULL;
static char *logfile = NULL;
static int donehup = 0;
static void usage __P((char *));
static void handlehup __P((void));
static void handlehup __P((int));
static void flushlogs __P((char *, FILE *));
static void print_log __P((int, FILE *, char *, int));
static void print_ipflog __P((FILE *, char *, int));
@ -126,7 +126,8 @@ static void logopts __P((int, char *));
#endif
static void handlehup()
static void handlehup(sig)
int sig;
{
FILE *fp;