From 7e1c31e8c2a87e3fe983aea3c447a50e1a9e6b83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 15 Dec 2006 22:50:58 +0000 Subject: [PATCH] (init_sec_context): Tell the other side what domain we think we are talking to. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19388 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/gssapi/ntlm/init_sec_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gssapi/ntlm/init_sec_context.c b/lib/gssapi/ntlm/init_sec_context.c index 90d57174a..88f7f39e3 100644 --- a/lib/gssapi/ntlm/init_sec_context.c +++ b/lib/gssapi/ntlm/init_sec_context.c @@ -135,7 +135,7 @@ _gss_ntlm_init_sec_context memset(&type1, 0, sizeof(type1)); type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_NTLM; - type1.domain = NULL; + type1.domain = name->domain; type1.hostname = NULL; type1.os[0] = 0; type1.os[1] = 0;