mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Explicitly initialize _pw_passwd.
This commit is contained in:
parent
55acaca9e1
commit
580ef74769
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue