diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-18 06:38:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-18 06:38:03 +0000 |
commit | ce884f0ec8fd6a947ef02735d0ecd96d7e970a2b (patch) | |
tree | c0a1d664e66668c1dccdc260f7d99e57a1c9c639 /libexec | |
parent | ee87e8b1e266cafced151750c1a77346f6f5b08c (diff) |
ARGSUSED on signal handlers
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/tftpd/tftpd.c | 6 |
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) { |