summaryrefslogtreecommitdiffstats
path: root/source3/param/loadparm_ctx.c
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-02-17 16:35:29 +1300
committerJeremy Allison <jra@samba.org>2014-05-07 19:49:14 +0200
commite06acfadd03e7cee8c7cbe0fe9660a6070f8bfb0 (patch)
tree73a1520115638832404447a0497fc6009bc6cfe7 /source3/param/loadparm_ctx.c
parent389208658972b6b19f15167dc8c2dd419e404a2e (diff)
downloadsamba-e06acfadd03e7cee8c7cbe0fe9660a6070f8bfb0.tar.gz
samba-e06acfadd03e7cee8c7cbe0fe9660a6070f8bfb0.tar.xz
samba-e06acfadd03e7cee8c7cbe0fe9660a6070f8bfb0.zip
param: change assignment of lp_string in s3_helpers to be consistent with the other functions
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-on: https://gerrit.samba.org/103 Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/param/loadparm_ctx.c')
-rw-r--r--source3/param/loadparm_ctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm_ctx.c b/source3/param/loadparm_ctx.c
index 0d5189b388..ed21e4fb5e 100644
--- a/source3/param/loadparm_ctx.c
+++ b/source3/param/loadparm_ctx.c
@@ -68,6 +68,7 @@ static struct loadparm_s3_helpers s3_fns =
.load = lp_load_for_s4_ctx,
.set_cmdline = lp_set_cmdline,
.dump = lp_dump,
+ .lp_string = lp_string,
.lp_string_set = lp_string_set,
};
@@ -76,6 +77,5 @@ const struct loadparm_s3_helpers *loadparm_s3_helpers(void)
struct loadparm_s3_helpers *helpers;
helpers = &s3_fns;
helpers->globals = get_globals();
- helpers->lp_string = lp_string;
return helpers;
}