diff options
author | Volker Lendecke <vl@samba.org> | 2008-02-29 22:33:35 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-29 22:39:45 +0100 |
commit | 45615d62838123bdf620a9c409d9868d47977800 (patch) | |
tree | e1dcb855e7b9099f4b1b6e192e0e031049ee70c8 | |
parent | c5249935d49456c58beac32565402212e98421d4 (diff) | |
download | samba-45615d62838123bdf620a9c409d9868d47977800.tar.gz samba-45615d62838123bdf620a9c409d9868d47977800.tar.bz2 samba-45615d62838123bdf620a9c409d9868d47977800.zip |
Check the right variable for being NULL
(This used to be commit f2c67803792f1fd3929e922c1f626f8247e08992)
-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 35c20ed647..8355669d9f 100644 --- a/source3/libsmb/ntlmssp.c +++ b/source3/libsmb/ntlmssp.c @@ -571,7 +571,7 @@ static NTSTATUS ntlmssp_server_negotiate(struct ntlmssp_state *ntlmssp_state, strlower_m(dnsdomname); dnsname = get_mydnsfullname(); - if (!dnsdomname) { + if (!dnsname) { return NT_STATUS_INVALID_COMPUTER_NAME; } |