diff options
author | Jeremy Allison <jra@samba.org> | 2003-02-04 23:43:03 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-02-04 23:43:03 +0000 |
commit | 41b680fce598d84f855cf25f814d507ede6d71cb (patch) | |
tree | 837f65d7e3d06ef062cacf4a2542eb6f93ead5f5 /source3/printing | |
parent | 2e45eda38611c8a4ca43525296a8f40074338f6d (diff) | |
download | samba-41b680fce598d84f855cf25f814d507ede6d71cb.tar.gz samba-41b680fce598d84f855cf25f814d507ede6d71cb.tar.bz2 samba-41b680fce598d84f855cf25f814d507ede6d71cb.zip |
Up the hash table size for printing tdb.c
Jeremy.
(This used to be commit 97848f40eec7320c8a06eb0a7df7c1677e41efd8)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/printing_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/printing_db.c b/source3/printing/printing_db.c index ec33daea1a..0aa8dfafa5 100644 --- a/source3/printing/printing_db.c +++ b/source3/printing/printing_db.c @@ -95,7 +95,7 @@ struct tdb_print_db *get_print_db_byname(const char *printername) done_become_root = True; } - p->tdb = tdb_open_log(printdb_path, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600); + p->tdb = tdb_open_log(printdb_path, 5000, TDB_DEFAULT, O_RDWR|O_CREAT, 0600); if (done_become_root) unbecome_root(); |