diff options
-rw-r--r-- | source3/auth/auth_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index a93d44fe91..d8e838721e 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -358,8 +358,8 @@ NTSTATUS make_user_info_for_reply_enc(struct auth_usersupplied_info **user_info, return make_user_info_map(user_info, smb_name, client_domain, get_remote_machine_name(), - lm_resp.data ? &lm_resp : NULL, - nt_resp.data ? &nt_resp : NULL, + lm_resp.data && (lm_resp.length > 0) ? &lm_resp : NULL, + nt_resp.data && (nt_resp.length > 0) ? &nt_resp : NULL, NULL, NULL, NULL, True); } |