summaryrefslogtreecommitdiff
path: root/source3/utils/ntlm_auth.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2012-10-26 18:07:59 +0200
committerAndreas Schneider <asn@cryptomilk.org>2012-10-26 20:13:45 +0200
commit281c62b33001571a4d926b30035e65d93d649660 (patch)
treea25706a0f4cce458fbb5792a2238e87c5dedc67a /source3/utils/ntlm_auth.c
parentcb50e85a5a054eeb59bf4c27c886679285732548 (diff)
downloadsamba-281c62b33001571a4d926b30035e65d93d649660.tar.gz
samba-281c62b33001571a4d926b30035e65d93d649660.tar.bz2
samba-281c62b33001571a4d926b30035e65d93d649660.zip
ntlm_auth: Increase debug level if we use config domain name.
If an application like evolution-ews is using ntlm_auth it will alwys get this message cause the is no winbind running and it is not needed. Reviewed-by: Simo Sorce <idra@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Fri Oct 26 20:13:45 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/utils/ntlm_auth.c')
-rw-r--r--source3/utils/ntlm_auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c
index 7cf40b905d..2bf9747b2f 100644
--- a/source3/utils/ntlm_auth.c
+++ b/source3/utils/ntlm_auth.c
@@ -301,7 +301,7 @@ const char *get_winbind_domain(void)
if (winbindd_request_response(WINBINDD_DOMAIN_NAME, NULL, &response) !=
NSS_STATUS_SUCCESS) {
- DEBUG(0, ("could not obtain winbind domain name!\n"));
+ DEBUG(1, ("could not obtain winbind domain name!\n"));
return lp_workgroup();
}
@@ -327,7 +327,7 @@ const char *get_winbind_netbios_name(void)
if (winbindd_request_response(WINBINDD_NETBIOS_NAME, NULL, &response) !=
NSS_STATUS_SUCCESS) {
- DEBUG(0, ("could not obtain winbind netbios name!\n"));
+ DEBUG(1, ("could not obtain winbind netbios name!\n"));
return lp_netbios_name();
}