1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-04 08:23:50 +03:00

loadparm: Fix activation of registry globals in lp_load_*.

This completes bba04a8fba:
The reverted logic has to be put into the callers
lp_load() and lp_load_initial_only() of lp_load_ex(), too.
Silly bug.

Michael
This commit is contained in:
Michael Adam
2008-05-10 00:13:11 +02:00
parent e54c71954a
commit c1f300c76e

View File

@@ -8783,7 +8783,7 @@ bool lp_load(const char *pszFname,
save_defaults,
add_ipc,
initialize_globals,
false);
true);
}
bool lp_load_initial_only(const char *pszFname)
@@ -8793,7 +8793,7 @@ bool lp_load_initial_only(const char *pszFname)
false,
false,
true,
true);
false);
}
/***************************************************************************