From dee63fe4ca5d8dad820ff8b5f15edba41e6be65f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 30 Dec 2009 16:53:08 +0100 Subject: s3:ntlmssp: use client.netbios_name instead of workstation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit metze Signed-off-by: Günther Deschner --- source3/rpc_server/srv_pipe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/rpc_server/srv_pipe.c') diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c index f6ed50c945..7b02ac8b1f 100644 --- a/source3/rpc_server/srv_pipe.c +++ b/source3/rpc_server/srv_pipe.c @@ -704,7 +704,8 @@ static bool pipe_ntlmssp_verify_final(pipes_struct *p, DATA_BLOB *p_resp_blob) DEBUG(5, ("pipe_ntlmssp_verify_final: OK: user: %s domain: %s " "workstation: %s\n", a->ntlmssp_state->user, - a->ntlmssp_state->domain, a->ntlmssp_state->workstation)); + a->ntlmssp_state->domain, + a->ntlmssp_state->client.netbios_name)); if (a->server_info->ptok == NULL) { DEBUG(1,("Error: Authmodule failed to provide nt_user_token\n")); -- cgit