summaryrefslogtreecommitdiff
path: root/source/lib/genrand.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/lib/genrand.c')
-rw-r--r--source/lib/genrand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/genrand.c b/source/lib/genrand.c
index f37bbc9c2fd..1897b86818b 100644
--- a/source/lib/genrand.c
+++ b/source/lib/genrand.c
@@ -114,14 +114,14 @@ static int do_reseed(BOOL use_fd, int fd)
* seriously this will be secret.
*/
- pw = getpwnam_alloc("root");
+ pw = getpwnam_alloc(NULL, "root");
if (pw && pw->pw_passwd) {
size_t i;
unsigned char md4_tmp[16];
mdfour(md4_tmp, (unsigned char *)pw->pw_passwd, strlen(pw->pw_passwd));
for (i=0;i<16;i++)
seed_inbuf[8+i] ^= md4_tmp[i];
- passwd_free(&pw);
+ TALLOC_FREE(pw);
}
/*