diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 19:05:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 19:05:36 +0000 |
commit | d6d18fd87ddab6a16425ef8c785e5bb8ee153c72 (patch) | |
tree | 27e18de9874c34fafee1b305c6da7033fd011675 /libexec | |
parent | f9e0162f6c9ad8db4b0d7365e0a8008814241850 (diff) |
ARGSUSED signal handler
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/rpc.rstatd/rstat_proc.c | 5 | ||||
-rw-r--r-- | libexec/rpc.rstatd/rstatd.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/libexec/rpc.rstatd/rstat_proc.c b/libexec/rpc.rstatd/rstat_proc.c index 5a085f9250a..65541221193 100644 --- a/libexec/rpc.rstatd/rstat_proc.c +++ b/libexec/rpc.rstatd/rstat_proc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rstat_proc.c,v 1.25 2004/02/15 02:45:47 tedu Exp $ */ +/* $OpenBSD: rstat_proc.c,v 1.26 2004/09/15 19:05:35 deraadt Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -31,7 +31,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro";*/ /*static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char rcsid[] = "$OpenBSD: rstat_proc.c,v 1.25 2004/02/15 02:45:47 tedu Exp $"; +static char rcsid[] = "$OpenBSD: rstat_proc.c,v 1.26 2004/09/15 19:05:35 deraadt Exp $"; #endif /* @@ -160,6 +160,7 @@ rstatproc_havedisk_1_svc(void *arg, struct svc_req *rqstp) return (rstatproc_havedisk_3_svc(arg, rqstp)); } +/* ARGSUSED */ void updatestatsig(int sig) { diff --git a/libexec/rpc.rstatd/rstatd.c b/libexec/rpc.rstatd/rstatd.c index 1af267a33ac..76e923d825c 100644 --- a/libexec/rpc.rstatd/rstatd.c +++ b/libexec/rpc.rstatd/rstatd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rstatd.c,v 1.18 2004/06/02 02:21:15 brad Exp $ */ +/* $OpenBSD: rstatd.c,v 1.19 2004/09/15 19:05:35 deraadt Exp $ */ /*- * Copyright (c) 1993, John Brezak @@ -29,7 +29,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: rstatd.c,v 1.18 2004/06/02 02:21:15 brad Exp $"; +static char rcsid[] = "$OpenBSD: rstatd.c,v 1.19 2004/09/15 19:05:35 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -58,6 +58,7 @@ int closedown = 20; /* how long to wait before going dormant */ volatile sig_atomic_t gotsig; +/* ARGSUSED */ static void getsig(int signo) { |