diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:25:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:25:34 +0000 |
commit | b307515eac98d29c6b6760f23d0bf5e7ed76317c (patch) | |
tree | 1df2ba478582fb366d25a91262390a0ccb1fc5cc /usr.bin/newsyslog | |
parent | 85ae7c527ec257193f53adb0dbf7d5159a31670e (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'usr.bin/newsyslog')
-rw-r--r-- | usr.bin/newsyslog/newsyslog.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/newsyslog/newsyslog.c b/usr.bin/newsyslog/newsyslog.c index 5dc577f9092..2d2d69c41ab 100644 --- a/usr.bin/newsyslog/newsyslog.c +++ b/usr.bin/newsyslog/newsyslog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newsyslog.c,v 1.81 2004/07/11 17:21:21 millert Exp $ */ +/* $OpenBSD: newsyslog.c,v 1.82 2004/09/14 22:25:33 deraadt Exp $ */ /* * Copyright (c) 1999, 2002, 2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -72,7 +72,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: newsyslog.c,v 1.81 2004/07/11 17:21:21 millert Exp $"; +static const char rcsid[] = "$OpenBSD: newsyslog.c,v 1.82 2004/09/14 22:25:33 deraadt Exp $"; #endif /* not lint */ #ifndef CONF @@ -1086,6 +1086,7 @@ openmail(void) return (NULL); } +/* ARGSUSED */ void child_killer(int signo) { |