summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 23:49:50 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 23:49:50 +0000
commit3f352c01082ea6ce0d8ffc0b8594325da7db18bb (patch)
treeff656c5f810f1e624ce13f40a06625e3bd22a600 /libexec
parentf0b6f9c4cf4ef62bcb29abfb65370edfd4d96ea6 (diff)
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rpc.rquotad/rquotad.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/rpc.rquotad/rquotad.c b/libexec/rpc.rquotad/rquotad.c
index 46e061e6ef7..ddc39ce5796 100644
--- a/libexec/rpc.rquotad/rquotad.c
+++ b/libexec/rpc.rquotad/rquotad.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rquotad.c,v 1.19 2004/06/02 02:21:15 brad Exp $ */
+/* $OpenBSD: rquotad.c,v 1.20 2004/09/14 23:49:49 deraadt Exp $ */
/*
* by Manuel Bouyer (bouyer@ensta.fr). Public domain.
@@ -44,11 +44,12 @@ struct fs_stat {
char *fs_file; /* mount point of the filesystem */
char *qfpathname; /* pathname of the quota file */
dev_t st_dev; /* device of the filesystem */
-} fs_stat;
+};
struct fs_stat *fs_begin = NULL;
int from_inetd = 1;
+/* ARGSUSED */
static void
cleanup(int signo)
{