mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00:00
Fixed the type of a signal handler.
This commit is contained in:
parent
f59f5db544
commit
234e2f5964
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40494
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user