From a85f5bc268a1c13334b86ac3a44a026359c09371 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 23 Apr 1998 18:54:57 +0000 Subject: genrand.c: Changed SMB_PASSWD_FILE to lp_smb_passwd_file(). password.c: Started the initial code for domain_client_validate(). All bracketed with #ifdef DOMAIN_CLIENT for now. reply.c: Call to domain_client_validate(). All bracketed with #ifdef DOMAIN_CLIENT for now. smbpass.c: New code to get/set machine passwords. Tidied up nesting of lock calls. Jeremy. (This used to be commit 89fe059a6816f32d2cc5c4c04c4089b60590e7e6) --- source3/lib/genrand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/genrand.c b/source3/lib/genrand.c index e20f054504..3eae47486f 100644 --- a/source3/lib/genrand.c +++ b/source3/lib/genrand.c @@ -143,7 +143,7 @@ static uint32 do_reseed(unsigned char *md4_outbuf) /* possibly add in some secret file contents */ do_filehash("/etc/shadow", &md4_inbuf[0]); - do_filehash(SMB_PASSWD_FILE, &md4_inbuf[16]); + do_filehash(lp_smb_passwd_file(), &md4_inbuf[16]); /* add in the root encrypted password. On any system where security is taken seriously this will be secret */ -- cgit