diff options
-rw-r--r-- | libexec/rpc.rquotad/rquotad.c | 5 |
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) { |