diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 00:46:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 00:46:47 +0000 |
commit | 11f410a2db67b6cbf0149afef778bfe0af2a74f1 (patch) | |
tree | 32e6d54db3a7afc37466dc90e062c08ea9b97eac /libexec/spamd/grey.c | |
parent | 4ac5b718ae937f836bc2a0b72b04de66d5f5f85a (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'libexec/spamd/grey.c')
-rw-r--r-- | libexec/spamd/grey.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/spamd/grey.c b/libexec/spamd/grey.c index a77f60e52c9..d4234cb1211 100644 --- a/libexec/spamd/grey.c +++ b/libexec/spamd/grey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grey.c,v 1.17 2004/08/15 21:49:45 millert Exp $ */ +/* $OpenBSD: grey.c,v 1.18 2004/09/15 00:46:46 deraadt Exp $ */ /* * Copyright (c) 2004 Bob Beck. All rights reserved. @@ -60,6 +60,7 @@ static char *pargv[11]= { /* If the parent gets a signal, kill off the children and exit */ +/* ARGSUSED */ static void sig_term_chld(int sig) { |