summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-12 20:43:11 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-12 20:43:11 +0000
commit92e431f4e9e9d635730f795778136beb804a9fe7 (patch)
tree102c122d1cae4a12ce2266d515a41a2fda0a952e
parente51fa92ba162e10d2d67edf85da1b480053b7f7f (diff)
ARGSUSED on signal handler
-rw-r--r--usr.bin/chpass/chpass.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/chpass/chpass.c b/usr.bin/chpass/chpass.c
index 42035d2b3f3..f4f32d5deb9 100644
--- a/usr.bin/chpass/chpass.c
+++ b/usr.bin/chpass/chpass.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: chpass.c,v 1.31 2004/05/10 20:05:48 wilfried Exp $ */
+/* $OpenBSD: chpass.c,v 1.32 2005/12/12 20:43:10 deraadt Exp $ */
/* $NetBSD: chpass.c,v 1.8 1996/05/15 21:50:43 jtc Exp $ */
/*-
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)chpass.c 8.4 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: chpass.c,v 1.31 2004/05/10 20:05:48 wilfried Exp $";
+static char rcsid[] = "$OpenBSD: chpass.c,v 1.32 2005/12/12 20:43:10 deraadt Exp $";
#endif
#endif /* not lint */
@@ -257,6 +257,7 @@ baduser(void)
errx(1, "%s", strerror(EACCES));
}
+/* ARGSUSED */
void
kbintr(int signo)
{