summaryrefslogtreecommitdiff
path: root/usr.bin/passwd
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-11-24 21:07:05 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-11-24 21:07:05 +0000
commit214a094a255867e71996b1cf6ca03fede69c93ba (patch)
tree0445c43eaee8d485913da7d4aba68d8a5b2a8ece /usr.bin/passwd
parentb7866de6510d657d788b565e72a52d209c4afb10 (diff)
Include err.h and util.h
Diffstat (limited to 'usr.bin/passwd')
-rw-r--r--usr.bin/passwd/pwd_check.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/passwd/pwd_check.c b/usr.bin/passwd/pwd_check.c
index 9b902adb172..7898774f4e2 100644
--- a/usr.bin/passwd/pwd_check.c
+++ b/usr.bin/passwd/pwd_check.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pwd_check.c,v 1.2 2000/11/24 20:50:20 millert Exp $ */
+/* $OpenBSD: pwd_check.c,v 1.3 2000/11/24 21:07:04 millert Exp $ */
/*
* Copyright 2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -38,10 +38,12 @@
#include <unistd.h>
#include <limits.h>
#include <errno.h>
+#include <err.h>
#include <regex.h>
#include <grp.h>
#include <paths.h>
#include <pwd.h>
+#include <util.h>
struct pattern {
char *match;