From 7568b266d8df078ae69d34af2c0b7641e091fc01 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Dec 2013 16:04:15 +1300 Subject: param: Rename variable used for lp_max_stat_cache_size iMaxStatCacheSize Signed-off-by: Andrew Bartlett Signed-off-by: Garming Sam Reviewed-by: Jeremy Allison --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/param/loadparm.c') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 01fc060b9f..9890dd68eb 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -872,7 +872,7 @@ static void init_globals(bool reinit_globals) Globals.nt_pipe_support = true; /* Do NT pipes by default. */ Globals.nt_status_support = true; /* Use NT status by default. */ Globals.stat_cache = true; /* use stat cache by default */ - Globals.iMaxStatCacheSize = 256; /* 256k by default */ + Globals.max_stat_cache_size = 256; /* 256k by default */ Globals.restrict_anonymous = 0; Globals.client_lanman_auth = false; /* Do NOT use the LanMan hash if it is available */ Globals.client_plaintext_auth = false; /* Do NOT use a plaintext password even if is requested by the server */ -- cgit