diff options
author | Gerald Carter <jerry@samba.org> | 2003-12-19 00:33:27 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-12-19 00:33:27 +0000 |
commit | 99b2bbfaa26139e6c27db8bebcd10719872bcbe2 (patch) | |
tree | 68792e89a30a5570d735f14fbaf65779b3f86a2b /source3/auth/auth_winbind.c | |
parent | 80222a3a92209394e35edaee5f5773c72d0e1fdf (diff) | |
download | samba-99b2bbfaa26139e6c27db8bebcd10719872bcbe2.tar.gz samba-99b2bbfaa26139e6c27db8bebcd10719872bcbe2.tar.bz2 samba-99b2bbfaa26139e6c27db8bebcd10719872bcbe2.zip |
* 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 d22b4097d4c2bde7989af31ccb572871c6e63424)
Diffstat (limited to 'source3/auth/auth_winbind.c')
-rw-r--r-- | source3/auth/auth_winbind.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index d09987ba37..0e2820313e 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; } |