diff options
Diffstat (limited to 'nscd/pwdcache.c')
-rw-r--r-- | nscd/pwdcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c index e2bf73a..9b7c0a0 100644 --- a/nscd/pwdcache.c +++ b/nscd/pwdcache.c @@ -110,7 +110,7 @@ cache_pwdinit () pwdtbl = calloc (modulo, sizeof (pwdhash)); if (pwdtbl == NULL) return -1; - uidtbl = calloc (modulo, sizeof (pwdhash)); + uidtbl = calloc (modulo, sizeof (uidhash)); if (uidtbl == NULL) return -1; negtbl = calloc (modulo, sizeof (neghash)); |