summaryrefslogtreecommitdiff
path: root/nscd/pwdcache.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-09-14 22:04:05 +0000
committerUlrich Drepper <drepper@redhat.com>1998-09-14 22:04:05 +0000
commitd3f8acb39b5b7f7390ac7e6c5d09648837683d5f (patch)
tree56c4a3a82f76e92bed34868013245faed2e1d3b4 /nscd/pwdcache.c
parent0a1590ba5303470ec70dda95fe31d737c9e6246b (diff)
Update.
1998-09-14 Ulrich Drepper <drepper@cygnus.com> * nscd/pwdcache.c (cache_pwdinit): Allocate uidtbl of correct size.
Diffstat (limited to 'nscd/pwdcache.c')
-rw-r--r--nscd/pwdcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c
index e2bf73afc1..9b7c0a040a 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));