diff options
author | Gerald Carter <jerry@samba.org> | 2005-08-26 18:10:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:03:24 -0500 |
commit | 99376ade3540babc51ce2f36b3a2753452b8cb59 (patch) | |
tree | 00ecd606349896b4e0fc03ff0f081ce22c8d1e77 /source3/utils | |
parent | f5b2238bb3812dceb4262a4b26021350a68d7af3 (diff) | |
download | samba-99376ade3540babc51ce2f36b3a2753452b8cb59.tar.gz samba-99376ade3540babc51ce2f36b3a2753452b8cb59.tar.bz2 samba-99376ade3540babc51ce2f36b3a2753452b8cb59.zip |
r9658: cleanup a few debug messages
(This used to be commit ddd512526c65899de50cafd95b9c64fe623153b3)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/profiles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/profiles.c b/source3/utils/profiles.c index 424bc36695..284e15230a 100644 --- a/source3/utils/profiles.c +++ b/source3/utils/profiles.c @@ -80,7 +80,7 @@ static BOOL copy_registry_tree( REGF_FILE *infile, REGF_NK_REC *nk, } if ( swap_sid_in_acl( new_sd, &old_sid, &new_sid ) ) - DEBUG(1,("Updating ACL for %s\n", nk->keyname )); + DEBUG(2,("Updating ACL for %s\n", nk->keyname )); regsubkey_ctr_init( &subkeys ); regval_ctr_init( &values ); @@ -113,7 +113,7 @@ static BOOL copy_registry_tree( REGF_FILE *infile, REGF_NK_REC *nk, regval_ctr_destroy( &values ); regsubkey_ctr_destroy( &subkeys ); - DEBUG(2,("[%s]\n", path)); + DEBUG(1,("[%s]\n", path)); return True; } |