summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-04-02 13:49:51 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-04-02 13:49:51 +0000
commit0d01c00f0740da97bb328e8390c2b8fc6ce3166d (patch)
tree5f73d0fa9a80e9ab433a5fe0eaada7c9a7a5163d /source3
parent1a3f303029b33a24361750a2990964b7afe0481f (diff)
downloadsamba-0d01c00f0740da97bb328e8390c2b8fc6ce3166d.tar.gz
samba-0d01c00f0740da97bb328e8390c2b8fc6ce3166d.tar.bz2
samba-0d01c00f0740da97bb328e8390c2b8fc6ce3166d.zip
error_string, not error_message...
(This used to be commit ce197eae8d254114a295142b522cc028c375ae88)
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/ntlm_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c
index 243700cedd..82e6127d55 100644
--- a/source3/utils/ntlm_auth.c
+++ b/source3/utils/ntlm_auth.c
@@ -221,7 +221,7 @@ static NTSTATUS contact_winbind_auth_crap(const char *username,
if ((result != NSS_STATUS_SUCCESS) && (response.data.auth.nt_status == 0)) {
nt_status = NT_STATUS_UNSUCCESSFUL;
- if (error_message)
+ if (error_string)
*error_string = smb_xstrdup("Reading winbind reply failed!");
return nt_status;
}