summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-09-18 06:38:02 +0000
committerderaadt <deraadt@openbsd.org>2004-09-18 06:38:02 +0000
commit39f5e26a51d48f94d4c5cb77eb2360901d5dac31 (patch)
tree2cc9f9bc4cf7e798a9b09b943247266b6a9fd447
parentoops (diff)
downloadwireguard-openbsd-39f5e26a51d48f94d4c5cb77eb2360901d5dac31.tar.xz
wireguard-openbsd-39f5e26a51d48f94d4c5cb77eb2360901d5dac31.zip
ARGSUSED on signal handlers
-rw-r--r--libexec/tftpd/tftpd.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libexec/tftpd/tftpd.c b/libexec/tftpd/tftpd.c
index cc7d2830047..2033e5a15bc 100644
--- a/libexec/tftpd/tftpd.c
+++ b/libexec/tftpd/tftpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tftpd.c,v 1.35 2004/08/08 19:32:45 deraadt Exp $ */
+/* $OpenBSD: tftpd.c,v 1.36 2004/09/18 06:38:02 deraadt Exp $ */
/*
* Copyright (c) 1983 Regents of the University of California.
@@ -37,7 +37,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)tftpd.c 5.13 (Berkeley) 2/26/91";*/
-static char rcsid[] = "$OpenBSD: tftpd.c,v 1.35 2004/08/08 19:32:45 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: tftpd.c,v 1.36 2004/09/18 06:38:02 deraadt Exp $";
#endif /* not lint */
/*
@@ -478,6 +478,7 @@ validate_access(char *filename, int mode)
int timeouts;
jmp_buf timeoutbuf;
+/* ARGSUSED */
static void
timer(int signo)
{
@@ -551,6 +552,7 @@ abort:
return (1);
}
+/* ARGSUSED */
static void
justquit(int signo)
{