diff options
author | Volker Lendecke <vl@samba.org> | 2010-02-07 20:55:13 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-02-07 20:56:09 +0100 |
commit | 1b4a3cc3f49055b4fcdaa021e826660e7e33095a (patch) | |
tree | f00be02f23b850cf54581e77e3661aaecfd70f87 | |
parent | 6e510b49c03be9caba4f587f3f6cec547841b0d7 (diff) | |
download | samba-1b4a3cc3f49055b4fcdaa021e826660e7e33095a.tar.gz samba-1b4a3cc3f49055b4fcdaa021e826660e7e33095a.tar.bz2 samba-1b4a3cc3f49055b4fcdaa021e826660e7e33095a.zip |
s3: Fix some DEBUG statements
-rw-r--r-- | source3/registry/reg_backend_shares.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/reg_backend_shares.c b/source3/registry/reg_backend_shares.c index 733f80f716..143e79fc9b 100644 --- a/source3/registry/reg_backend_shares.c +++ b/source3/registry/reg_backend_shares.c @@ -71,7 +71,7 @@ static int shares_subkey_info( const char *key, struct regsubkey_ctr *subkey_ctr bool top_level = False; int num_subkeys = 0; - DEBUG(10,("printing_subkey_info: key=>[%s]\n", key)); + DEBUG(10, ("shares_subkey_info: key=>[%s]\n", key)); path = trim_reg_path( key ); @@ -105,7 +105,7 @@ static int shares_value_info(const char *key, struct regval_ctr *val) bool top_level = False; int num_values = 0; - DEBUG(10,("printing_value_info: key=>[%s]\n", key)); + DEBUG(10, ("shares_value_info: key=>[%s]\n", key)); path = trim_reg_path( key ); |