summaryrefslogtreecommitdiff
path: root/source4/lib/registry/ldb.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-08-26 22:12:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:02:42 -0500
commit6ca139026956916a4a956dd36d10d7f5a72272b8 (patch)
tree6a6ed123ed1b8a45f5e6a5abe52ceb8eb575ca87 /source4/lib/registry/ldb.c
parent3c9f28334c62167c80589b348c7662388342a922 (diff)
downloadsamba-6ca139026956916a4a956dd36d10d7f5a72272b8.tar.gz
samba-6ca139026956916a4a956dd36d10d7f5a72272b8.tar.bz2
samba-6ca139026956916a4a956dd36d10d7f5a72272b8.zip
r24684: Be a bit less verbose
(This used to be commit 7a7af62dc4485d832436ed39dfba41b417ec2b10)
Diffstat (limited to 'source4/lib/registry/ldb.c')
-rw-r--r--source4/lib/registry/ldb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/registry/ldb.c b/source4/lib/registry/ldb.c
index 8ee4d9f932..8a34fa7a54 100644
--- a/source4/lib/registry/ldb.c
+++ b/source4/lib/registry/ldb.c
@@ -295,11 +295,11 @@ static WERROR ldb_open_key(TALLOC_CTX *mem_ctx, const struct hive_key *h,
ret = ldb_search(c, ldap_path, LDB_SCOPE_BASE, "(key=*)", NULL, &res);
if (ret != LDB_SUCCESS) {
- DEBUG(0, ("Error opening key '%s': %s\n",
+ DEBUG(3, ("Error opening key '%s': %s\n",
ldb_dn_get_linearized(ldap_path), ldb_errstring(c)));
return WERR_FOOBAR;
} else if (res->count == 0) {
- DEBUG(0, ("Key '%s' not found\n", ldb_dn_get_linearized(ldap_path)));
+ DEBUG(3, ("Key '%s' not found\n", ldb_dn_get_linearized(ldap_path)));
talloc_free(res);
return WERR_NOT_FOUND;
}