From 5f0f5b361531926bc394a4e468392ee617dbbc1f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 17 Apr 2012 08:38:10 +0200 Subject: Revert "s3:libsmb/ntlmssp: an empty string should mean no password" This reverts commit 92483eee254ef6844fe88abe1e64f67033a1ea2d. --- source3/libsmb/ntlmssp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/libsmb/ntlmssp.c b/source3/libsmb/ntlmssp.c index 72466fec6c..b877af583a 100644 --- a/source3/libsmb/ntlmssp.c +++ b/source3/libsmb/ntlmssp.c @@ -78,7 +78,7 @@ NTSTATUS ntlmssp_set_password(struct ntlmssp_state *ntlmssp_state, const char *p { TALLOC_FREE(ntlmssp_state->lm_hash); TALLOC_FREE(ntlmssp_state->nt_hash); - if (!password || strlen(password) == 0) { + if (!password) { return NT_STATUS_OK; } else { uint8_t lm_hash[16]; -- cgit