From bfcdd6eed3d3e9dca7ef45793562703a951ead25 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 4 Feb 2003 23:43:21 +0000 Subject: Up the hash table size for printing tdb.c Jeremy. (This used to be commit 5f13d6b4a009a02c5d5ef9f806f0eb4b52cfe70c) --- source3/printing/printing_db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- cgit