1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-15 05:57:49 +03:00

Up the hash table size for printing tdb.c

Jeremy.
This commit is contained in:
Jeremy Allison -
parent 3497330ff5
commit 5f13d6b4a0

View File

@ -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();