diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2008-09-19 12:57:26 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-21 23:18:01 +0200 |
commit | 5c3e76eddd89d9af18bf2a00e7ee6021ab90b234 (patch) | |
tree | bb3fa7f1cc1e54e25c8ef065c3fc2d69036ad218 | |
parent | 9038f2a0fd87075cf2125b1444e2669125bc72ea (diff) | |
download | samba-5c3e76eddd89d9af18bf2a00e7ee6021ab90b234.tar.gz samba-5c3e76eddd89d9af18bf2a00e7ee6021ab90b234.tar.bz2 samba-5c3e76eddd89d9af18bf2a00e7ee6021ab90b234.zip |
Revert "Registry tool "regtree": Removing an error message"
This reverts commit f37a57fa366e2b0d77f9c1bd232d42a0f2cceb52.
-rw-r--r-- | source4/lib/registry/tools/regtree.c | 5 |
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"); |