diff options
author | 1997-02-16 19:59:17 +0000 | |
---|---|---|
committer | 1997-02-16 19:59:17 +0000 | |
commit | 9fac3542b123aea5c718c9f02eb4babc02090bb9 (patch) | |
tree | 5284a1c183611e2e6c3a400eb794ca4da54916a2 /lib/libutil/util.h | |
parent | Getting there... (diff) | |
download | wireguard-openbsd-9fac3542b123aea5c718c9f02eb4babc02090bb9.tar.xz wireguard-openbsd-9fac3542b123aea5c718c9f02eb4babc02090bb9.zip |
added password configuration access function, used to determine
password cipher type at the moment
Diffstat (limited to 'lib/libutil/util.h')
-rw-r--r-- | lib/libutil/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index 1466cdee354..6c2f4a304a9 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.4 1996/12/23 07:43:42 downsj Exp $ */ +/* $OpenBSD: util.h,v 1.5 1997/02/16 19:59:23 provos Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -64,6 +64,7 @@ void pw_init __P((void)); void pw_edit __P((int, const char *)); void pw_prompt __P((void)); void pw_copy __P((int, int, struct passwd *)); +void pw_getconf __P((char *, size_t, const char *, const char *)); int pw_scan __P((char *, struct passwd *, int *)); void pw_error __P((const char *, int, int)); int openpty __P((int *, int *, char *, struct termios *, |