summaryrefslogtreecommitdiffstats
path: root/source/registry/reg_db.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-07-15 14:26:11 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:00:06 -0500
commitd07179de2f2a6eb1d13d0e25ac10de1a21475559 (patch)
treef7f5398b90316a4f01b55d15534920aa8b24e6cb /source/registry/reg_db.c
parent294fdbccba9835b6abe5f26f22a0a05adb27564e (diff)
downloadsamba-d07179de2f2a6eb1d13d0e25ac10de1a21475559.tar.gz
samba-d07179de2f2a6eb1d13d0e25ac10de1a21475559.tar.xz
samba-d07179de2f2a6eb1d13d0e25ac10de1a21475559.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
Diffstat (limited to 'source/registry/reg_db.c')
-rw-r--r--source/registry/reg_db.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/registry/reg_db.c b/source/registry/reg_db.c
index bd17303a702..6e3a989972f 100644
--- a/source/registry/reg_db.c
+++ b/source/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;
}