diff options
author | Gerald Carter <jerry@samba.org> | 2005-07-15 14:26:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:00:06 -0500 |
commit | 6fe54515435e351ba958886cb9a7175c436ef88d (patch) | |
tree | a188eb29a9701f714e0bc5a28eb447720ad23732 /source3/registry | |
parent | 63b3898a739c200dddf74950264881ebea5aec54 (diff) | |
download | samba-6fe54515435e351ba958886cb9a7175c436ef88d.tar.gz samba-6fe54515435e351ba958886cb9a7175c436ef88d.tar.xz samba-6fe54515435e351ba958886cb9a7175c436ef88d.zip |
r8501: * disable printer handle object cache (was mostly used
for NT4 clients enumerating printer data on slow CPUs)
* fix pinter and secdesc record upgrade to normalize the key
(rev'd printer tdb version)
* fixed problem that was normalizing the printername name field
in general, this should fix the issues upgrading print servers
from 3.0.14a to 3.0.20
(This used to be commit d07179de2f2a6eb1d13d0e25ac10de1a21475559)
Diffstat (limited to 'source3/registry')
-rw-r--r-- | source3/registry/reg_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/reg_db.c b/source3/registry/reg_db.c index bd17303a702..6e3a989972f 100644 --- a/source3/registry/reg_db.c +++ b/source3/registry/reg_db.c @@ -356,7 +356,7 @@ int regdb_fetch_keys( const char* key, REGSUBKEY_CTR *ctr ) int i; fstring subkeyname; - DEBUG(10,("regdb_fetch_keys: Enter key => [%s]\n", key ? key : "NULL")); + DEBUG(11,("regdb_fetch_keys: Enter key => [%s]\n", key ? key : "NULL")); pstrcpy( path, key ); @@ -383,7 +383,7 @@ int regdb_fetch_keys( const char* key, REGSUBKEY_CTR *ctr ) SAFE_FREE( dbuf.dptr ); - DEBUG(10,("regdb_fetch_keys: Exit [%d] items\n", num_items)); + DEBUG(11,("regdb_fetch_keys: Exit [%d] items\n", num_items)); return num_items; } |