1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Reduce stat cache size default

Now that we have a LRU scheme for the stat cache we can live with a lot less
This commit is contained in:
Volker Lendecke 2008-01-08 10:17:05 +01:00
parent 48f61e4b9f
commit 9e736aab07

View File

@ -1588,7 +1588,7 @@ static void init_globals(bool first_time_only)
Globals.bNTPipeSupport = True; /* Do NT pipes by default. */
Globals.bNTStatusSupport = True; /* Use NT status by default. */
Globals.bStatCache = True; /* use stat cache by default */
Globals.iMaxStatCacheSize = 1024; /* one Meg by default. */
Globals.iMaxStatCacheSize = 256; /* 256k by default */
Globals.restrict_anonymous = 0;
Globals.bClientLanManAuth = False; /* Do NOT use the LanMan hash if it is available */
Globals.bClientPlaintextAuth = False; /* Do NOT use a plaintext password even if is requested by the server */