From 682f20c9ca501cca0d60f838547917db7dd361d7 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 19 Dec 2003 00:33:09 +0000 Subject: * add a few useful debug lines * fix bug involving Win9x clients. Make sure we save the right case for the located username in fill_sam_account() (This used to be commit 850e4be29e185ebe890f094372aa8c2cc86de76a) --- source3/auth/auth_winbind.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/auth/auth_winbind.c') diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index d09987ba37a..0e2820313e3 100644 --- a/source3/auth/auth_winbind.c +++ b/source3/auth/auth_winbind.c @@ -76,7 +76,8 @@ static NTSTATUS check_winbind_security(const struct auth_context *auth_context, } if (strequal(user_info->domain.str, get_global_sam_name())) { - DEBUG(3,("check_winbind_security: Not using winbind, requested domain was for this SAM.\n")); + DEBUG(3,("check_winbind_security: Not using winbind, requested domain [%s] was for this SAM.\n", + user_info->domain.str)); return NT_STATUS_NOT_IMPLEMENTED; } -- cgit