diff options
-rw-r--r-- | source3/libsmb/ntlmssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |