summaryrefslogtreecommitdiff
path: root/usr.bin/chpass
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-25 22:41:36 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-25 22:41:36 +0000
commitb90a8c7498059e0c6b36d4c39bf9383208e50e0a (patch)
tree0c28a4459bf095a8fa17e304ec77c7487e9395ca /usr.bin/chpass
parent8e21f7df4bfd0c0549931561290e102aaefb97fb (diff)
put in a proto
Diffstat (limited to 'usr.bin/chpass')
-rw-r--r--usr.bin/chpass/chpass.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/chpass/chpass.h b/usr.bin/chpass/chpass.h
index 1958713b667..59a55707255 100644
--- a/usr.bin/chpass/chpass.h
+++ b/usr.bin/chpass/chpass.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: chpass.h,v 1.8 2003/06/03 02:56:06 millert Exp $ */
+/* $OpenBSD: chpass.h,v 1.9 2003/06/25 22:41:35 deraadt Exp $ */
/* $NetBSD: chpass.h,v 1.4 1996/05/15 21:50:44 jtc Exp $ */
/*
@@ -36,7 +36,8 @@ struct passwd;
typedef struct _entry {
char *prompt;
- int (*func)(), restricted, len;
+ int (*func)(char *, struct passwd *, struct _entry *);
+ int restricted, len;
char *except, *save;
} ENTRY;