diff options
author | 2001-08-16 18:24:32 +0000 | |
---|---|---|
committer | 2001-08-16 18:24:32 +0000 | |
commit | 56c841ab05da4f2575deff50dc57c1533ebac5eb (patch) | |
tree | 241e0fe1071696d6f52231d164c95ed27a128216 /lib/libutil/util.h | |
parent | Add -s flag to only update secure .db file (/etc/spwd.db). Can be (diff) | |
download | wireguard-openbsd-56c841ab05da4f2575deff50dc57c1533ebac5eb.tar.xz wireguard-openbsd-56c841ab05da4f2575deff50dc57c1533ebac5eb.zip |
Add new 'secureonly' arg to pw_mkdb() to correspond to pwd_mkdb's new -s
flag and crank the library major due to the interface change.
Diffstat (limited to 'lib/libutil/util.h')
-rw-r--r-- | lib/libutil/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index dee03251834..e80c676cf7e 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.14 2001/08/12 22:00:34 millert Exp $ */ +/* $OpenBSD: util.h,v 1.15 2001/08/16 18:24:32 millert Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -90,7 +90,7 @@ int opendev __P((char *, int, int, char **)); void pw_setdir __P((const char *)); char *pw_file __P((const char *)); int pw_lock __P((int retries)); -int pw_mkdb __P((char *)); +int pw_mkdb __P((char *, int)); int pw_abort __P((void)); void pw_init __P((void)); void pw_edit __P((int, const char *)); |