diff options
author | 2002-07-31 21:53:34 +0000 | |
---|---|---|
committer | 2002-07-31 21:53:34 +0000 | |
commit | 10977e171b1c51b9958e5bec5963a1ed827de7b1 (patch) | |
tree | 59fbeb34f6f50523217c1d2098e8f6570526fd06 | |
parent | fake out ELF stuff (diff) | |
download | wireguard-openbsd-10977e171b1c51b9958e5bec5963a1ed827de7b1.tar.xz wireguard-openbsd-10977e171b1c51b9958e5bec5963a1ed827de7b1.zip |
mark pw_error() __dead since it exits
-rw-r--r-- | lib/libutil/passwd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libutil/passwd.c b/lib/libutil/passwd.c index 87d1776a218..fbd2d7308ea 100644 --- a/lib/libutil/passwd.c +++ b/lib/libutil/passwd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: passwd.c,v 1.35 2002/06/27 22:21:50 deraadt Exp $ */ +/* $OpenBSD: passwd.c,v 1.36 2002/07/31 21:53:34 millert Exp $ */ /* * Copyright (c) 1987, 1993, 1994, 1995 @@ -34,7 +34,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: passwd.c,v 1.35 2002/06/27 22:21:50 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: passwd.c,v 1.36 2002/07/31 21:53:34 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -598,7 +598,7 @@ fmt: warnx("corrupted entry"); return (1); } -void +__dead void pw_error(name, err, eval) const char *name; int err, eval; |