1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

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>
This commit is contained in:
Garming Sam 2014-02-17 16:35:29 +13:00 committed by Jeremy Allison
parent 3892086589
commit e06acfadd0

View File

@ -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;
}