diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1997-02-16 19:59:24 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1997-02-16 19:59:24 +0000 |
commit | c9ea440778e9310dbc6acf71213994a032101eb2 (patch) | |
tree | 564013c439ddcf93aec439440002d5eb784eae69 /lib/libutil/util.h | |
parent | b2fb130e47aa017b38d5d193563fef8fd0fbd1bb (diff) |
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 *, |