diff options
author | 2000-11-26 01:25:33 +0000 | |
---|---|---|
committer | 2000-11-26 01:25:33 +0000 | |
commit | d8bef6977c6a6bb414de7cbf06a49918f2dab6c7 (patch) | |
tree | 86f7833f51bf30b421ecc9efae131f16f3f887b6 /lib/libutil/util.h | |
parent | Support -u username option. Loosely based on FreeBSD's changes. (diff) | |
download | wireguard-openbsd-d8bef6977c6a6bb414de7cbf06a49918f2dab6c7.tar.xz wireguard-openbsd-d8bef6977c6a6bb414de7cbf06a49918f2dab6c7.zip |
Add a username argument to pw_mkdb to match 'pwd_mkdb -u username'.
Crank the shlib major number 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 a1eee32b110..b8082ae4acd 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.10 2000/04/30 18:44:44 millert Exp $ */ +/* $OpenBSD: util.h,v 1.11 2000/11/26 01:25:33 millert Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -72,7 +72,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((void)); +int pw_mkdb __P((char *)); int pw_abort __P((void)); void pw_init __P((void)); void pw_edit __P((int, const char *)); |