diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:29:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:29:05 +0000 |
commit | efb41b6b9f175ee28ebbae3623b30aebf982dc28 (patch) | |
tree | 8e440bb1ec626a1a927a0974d4b318981a5324ec /usr.sbin/portmap/portmap.c | |
parent | e9864a03fb514e62e6063402e6a716607a01ca4a (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'usr.sbin/portmap/portmap.c')
-rw-r--r-- | usr.sbin/portmap/portmap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/portmap/portmap.c b/usr.sbin/portmap/portmap.c index a50f20b51ae..107d7a57b9f 100644 --- a/usr.sbin/portmap/portmap.c +++ b/usr.sbin/portmap/portmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: portmap.c,v 1.31 2004/03/16 01:11:09 tedu Exp $ */ +/* $OpenBSD: portmap.c,v 1.32 2004/09/14 22:28:50 deraadt Exp $ */ /*- * Copyright (c) 1996, 1997 Theo de Raadt (OpenBSD). All rights reserved. @@ -40,7 +40,7 @@ char copyright[] = #if 0 static char sccsid[] = "from: @(#)portmap.c 5.4 (Berkeley) 4/19/91"; #else -static char rcsid[] = "$OpenBSD: portmap.c,v 1.31 2004/03/16 01:11:09 tedu Exp $"; +static char rcsid[] = "$OpenBSD: portmap.c,v 1.32 2004/09/14 22:28:50 deraadt Exp $"; #endif #endif /* not lint */ @@ -651,6 +651,7 @@ callit(struct svc_req *rqstp, SVCXPRT *xprt) exit(0); } +/* ARGSUSED */ void reap(int signo) { |