aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2000-10-27 18:27:07 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2000-10-27 18:27:07 +0000
commit580ef74769861d0504ae3faeb12f009acffb9350 (patch)
tree2db8940d79b245807433e283c5009a9fbd942bd0
parent55acaca9e12e699707b44b30b3a2c55814418860 (diff)
Notes
-rw-r--r--lib/libc/gen/getpwent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/getpwent.c b/lib/libc/gen/getpwent.c
index 3c8620e0f23cb..c46c5a255d3ae 100644
--- a/lib/libc/gen/getpwent.c
+++ b/lib/libc/gen/getpwent.c
@@ -78,7 +78,7 @@ extern int innetgr __P((const char *, const char *, const char *, const char *))
* in sync with that in `pwd_mkdb'.
*/
-static struct passwd _pw_passwd; /* password structure */
+static struct passwd _pw_passwd = { "", "", 0, 0, 0, "", "", "", "", 0, 0 };
static DB *_pw_db; /* password database */
static int _pw_keynum; /* key counter. no more records if -1 */
static int _pw_stayopen; /* keep fd's open */