summaryrefslogtreecommitdiff
path: root/source4/lib/registry/tools
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2008-09-19 12:57:26 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-09-21 23:18:01 +0200
commit5c3e76eddd89d9af18bf2a00e7ee6021ab90b234 (patch)
treebb3fa7f1cc1e54e25c8ef065c3fc2d69036ad218 /source4/lib/registry/tools
parent9038f2a0fd87075cf2125b1444e2669125bc72ea (diff)
downloadsamba-5c3e76eddd89d9af18bf2a00e7ee6021ab90b234.tar.gz
samba-5c3e76eddd89d9af18bf2a00e7ee6021ab90b234.tar.bz2
samba-5c3e76eddd89d9af18bf2a00e7ee6021ab90b234.zip
Revert "Registry tool "regtree": Removing an error message"
This reverts commit f37a57fa366e2b0d77f9c1bd232d42a0f2cceb52.
Diffstat (limited to 'source4/lib/registry/tools')
-rw-r--r--source4/lib/registry/tools/regtree.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/registry/tools/regtree.c b/source4/lib/registry/tools/regtree.c
index 2175f9c9d3..6d55a3eb84 100644
--- a/source4/lib/registry/tools/regtree.c
+++ b/source4/lib/registry/tools/regtree.c
@@ -82,6 +82,11 @@ static void print_tree(int level, struct registry_key *p,
valuetype, valuedata));
}
talloc_free(mem_ctx);
+
+ if(!W_ERROR_EQUAL(error, WERR_NO_MORE_ITEMS)) {
+ DEBUG(0, ("Error occured while fetching values for '%s': %s\n",
+ name, win_errstr(error)));
+ }
}
mem_ctx = talloc_init("sec_desc");