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

s3:param: use lp_load_no_reinit() in lp_load_for_s4_ctx()

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Ira Cooper <ira@samba.org>
This commit is contained in:
Michael Adam 2014-09-18 00:29:28 +02:00 committed by Ira Cooper
parent 14c1e05165
commit 7af9d238b5

View File

@ -50,7 +50,7 @@ static bool lp_load_for_s4_ctx(const char *filename)
bool status;
mem_ctx = talloc_stackframe();
status = lp_load(filename, false, false, false, false);
status = lp_load_no_reinit(filename);
talloc_free(mem_ctx);
return status;