diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-08-19 20:29:24 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-08-19 20:29:24 +0000 |
commit | 36d7b6426d2521627d611c17ead656bca1879742 (patch) | |
tree | d9182410201e50990e0df2c4e966486cec2b88c0 /usr.bin | |
parent | 15d5ebc2f96992deedc9d65931a8b6f2c6d08c1e (diff) |
add missing #include <err.h> in non-KRB5 case
Diffstat (limited to 'usr.bin')
-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 |