summaryrefslogtreecommitdiff
path: root/source3/param/loadparm_ctx.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/param/loadparm_ctx.c')
-rw-r--r--source3/param/loadparm_ctx.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/param/loadparm_ctx.c b/source3/param/loadparm_ctx.c
index 7c59ca709a..2289f6bc29 100644
--- a/source3/param/loadparm_ctx.c
+++ b/source3/param/loadparm_ctx.c
@@ -20,6 +20,11 @@
#include "includes.h"
#include "../source4/param/s3_param.h"
+static bool lp_load_for_s4_ctx(const char *filename)
+{
+ return lp_load(filename, false, false, false, false);
+}
+
/* These are in the order that they appear in the s4 loadparm file.
* All of the s4 loadparm functions should be here eventually, once
* they are implemented in the s3 loadparm, have the same format (enum
@@ -33,6 +38,7 @@ static const struct loadparm_s3_context s3_fns =
.get_servicebynum = lp_servicebynum,
.get_default_loadparm_service = lp_default_loadparm_service,
.get_numservices = lp_numservices,
+ .load = lp_load_for_s4_ctx,
.set_cmdline = lp_set_cmdline,
.server_role = lp_server_role,