summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-07-05 07:24:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:50 -0500
commitb82881591cd1c63ed28d14ab31a652ef5319b2d0 (patch)
tree0c53fbdbd1ff5c6f092b3eac53add51ecb0e6332 /source4/auth
parent92ca39eff66181c2fa71b12f6a73824a8b44d71b (diff)
downloadsamba-b82881591cd1c63ed28d14ab31a652ef5319b2d0.tar.gz
samba-b82881591cd1c63ed28d14ab31a652ef5319b2d0.tar.bz2
samba-b82881591cd1c63ed28d14ab31a652ef5319b2d0.zip
r1335: NT_STATUS_INTERNAL_DB_CORRUPTION
should cause DEBUG(0,(...)); metze (This used to be commit 80851e67783a9c3c8bdd7f2b52e0b46dd7b18d05)
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/auth_sam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/auth_sam.c b/source4/auth/auth_sam.c
index 280c57ea56..ac7a6e5693 100644
--- a/source4/auth/auth_sam.c
+++ b/source4/auth/auth_sam.c
@@ -235,7 +235,7 @@ static NTSTATUS check_sam_security(const struct auth_context *auth_context,
}
if (ret > 1) {
- DEBUG(1,("Found %d records matching user [%s]\n", ret, username));
+ DEBUG(0,("Found %d records matching user [%s]\n", ret, username));
samdb_close(sam_ctx);
return NT_STATUS_INTERNAL_DB_CORRUPTION;
}
@@ -259,7 +259,7 @@ static NTSTATUS check_sam_security(const struct auth_context *auth_context,
}
if (ret_domain > 1) {
- DEBUG(1,("Found %d records matching domain [%s]\n",
+ DEBUG(0,("Found %d records matching domain [%s]\n",
ret_domain, domain_sid));
samdb_close(sam_ctx);
return NT_STATUS_INTERNAL_DB_CORRUPTION;