summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-25 10:16:20 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-25 10:16:20 +0000
commitc796799afd69fe627b1c8e51fb47957d30da9fae (patch)
tree5f02c0b62739bd022341e7ca0a9cd3c575c85586
parent8929f07a15e7c6f6dbc72b1c50b45eb4c321d516 (diff)
downloadsamba-c796799afd69fe627b1c8e51fb47957d30da9fae.tar.gz
samba-c796799afd69fe627b1c8e51fb47957d30da9fae.tar.xz
samba-c796799afd69fe627b1c8e51fb47957d30da9fae.zip
Bring auth_winbind into line with the protocol changes
Andrew Bartlett
-rw-r--r--source/auth/auth_winbind.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/auth/auth_winbind.c b/source/auth/auth_winbind.c
index 175e14a9d60..2d8e5066a22 100644
--- a/source/auth/auth_winbind.c
+++ b/source/auth/auth_winbind.c
@@ -63,6 +63,9 @@ static NTSTATUS check_winbind_security(const struct auth_context *auth_context,
snprintf(request.data.auth_crap.user, sizeof(request.data.auth_crap.user),
"%s\\%s", user_info->domain.str, user_info->smb_name.str);
+ fstrcpy(request.data.auth_crap.user, user_info->smb_name.str);
+ fstrcpy(request.data.auth_crap.domain, user_info->domain.str);
+
memcpy(request.data.auth_crap.chal, auth_context->challenge.data, sizeof(request.data.auth_crap.chal));
request.data.auth_crap.lm_resp_len = MIN(user_info->lm_resp.length,