From 46b22b073cf0d0c93f2e70dd4d670dc373d5a26a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 24 Mar 2005 04:11:39 +0000 Subject: r6027: Add copyright, and add a useful debug message. Andrew Bartlett (This used to be commit b5260cf0d4c4f2e81a310d1c94160c9fbaaa331f) --- source4/libcli/auth/ntlmssp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/libcli/auth') diff --git a/source4/libcli/auth/ntlmssp.c b/source4/libcli/auth/ntlmssp.c index 91bc9eadbd..37374d9d39 100644 --- a/source4/libcli/auth/ntlmssp.c +++ b/source4/libcli/auth/ntlmssp.c @@ -1,10 +1,10 @@ /* Unix SMB/Netbios implementation. Version 3.0 - handle NLTMSSP, server side + handle NLTMSSP, client server side parsing Copyright (C) Andrew Tridgell 2001 - Copyright (C) Andrew Bartlett 2001-2003 + Copyright (C) Andrew Bartlett 2001-2005 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -148,6 +148,7 @@ NTSTATUS ntlmssp_set_username(struct ntlmssp_state *ntlmssp_state, const char *u { if (!user) { /* it should be at least "" */ + DEBUG(1, ("NTLMSSP failed to set username - cannot accept NULL username\n")); return NT_STATUS_INVALID_PARAMETER; } ntlmssp_state->user = talloc_strdup(ntlmssp_state, user); -- cgit