diff options
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9f67a9ebf3..479a41eaae 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -249,13 +249,6 @@ static struct loadparm_service sDefault = .dummy = "" }; -static struct file_lists { - struct file_lists *next; - char *name; - char *subfname; - time_t modtime; -} *file_lists = NULL; - /* local variables */ static struct loadparm_service **ServicePtrs = NULL; static int iNumServices = 0; @@ -263,6 +256,7 @@ static int iServiceIndex = 0; static struct db_context *ServiceHash; static bool bInGlobalSection = true; static bool bGlobalOnly = false; +static struct file_lists *file_lists = NULL; #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct)) |