diff options
author | 2001-08-19 20:29:23 +0000 | |
---|---|---|
committer | 2001-08-19 20:29:23 +0000 | |
commit | d0fe12820b7c1884508b3005cf714749a509974e (patch) | |
tree | 05e85161befc9f02fa940466f46ebafe3d2618e9 | |
parent | Add new ioctls for adding/removing RDR and NAT rules to/from the active (diff) | |
download | wireguard-openbsd-d0fe12820b7c1884508b3005cf714749a509974e.tar.xz wireguard-openbsd-d0fe12820b7c1884508b3005cf714749a509974e.zip |
add missing #include <err.h> in non-KRB5 case
-rw-r--r-- | usr.bin/passwd/passwd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/passwd/passwd.c b/usr.bin/passwd/passwd.c index 1c7ca8badcb..bc546a9aa75 100644 --- a/usr.bin/passwd/passwd.c +++ b/usr.bin/passwd/passwd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: passwd.c,v 1.11 2001/07/07 00:10:49 millert Exp $ */ +/* $OpenBSD: passwd.c,v 1.12 2001/08/19 20:29:23 millert Exp $ */ /* * Copyright (c) 1988 The Regents of the University of California. @@ -41,12 +41,13 @@ char copyright[] = #ifndef lint /*static const char sccsid[] = "from: @(#)passwd.c 5.5 (Berkeley) 7/6/91";*/ -static const char rcsid[] = "$OpenBSD: passwd.c,v 1.11 2001/07/07 00:10:49 millert Exp $"; +static const char rcsid[] = "$OpenBSD: passwd.c,v 1.12 2001/08/19 20:29:23 millert Exp $"; #endif /* not lint */ #include <stdio.h> #include <string.h> #include <unistd.h> +#include <err.h> #ifdef KERBEROS #include <kerberosIV/krb.h> #endif |