1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-26 01:49:31 +03:00

s3:loadparm: make lp_load_ex static. We have wrappers for external callers.

This commit is contained in:
Michael Adam
2010-08-20 11:14:06 +02:00
parent 0ec0095d1a
commit 34092c11b4
2 changed files with 7 additions and 14 deletions

View File

@ -4016,13 +4016,6 @@ int load_usershare_shares(void);
void gfree_loadparm(void);
void lp_set_in_client(bool b);
bool lp_is_in_client(void);
bool lp_load_ex(const char *pszFname,
bool global_only,
bool save_defaults,
bool add_ipc,
bool initialize_globals,
bool allow_include_registry,
bool allow_registry_shares);
bool lp_load(const char *pszFname,
bool global_only,
bool save_defaults,

View File

@ -9162,13 +9162,13 @@ bool lp_is_in_client(void)
False on failure.
***************************************************************************/
bool lp_load_ex(const char *pszFname,
bool global_only,
bool save_defaults,
bool add_ipc,
bool initialize_globals,
bool allow_include_registry,
bool allow_registry_shares)
static bool lp_load_ex(const char *pszFname,
bool global_only,
bool save_defaults,
bool add_ipc,
bool initialize_globals,
bool allow_include_registry,
bool allow_registry_shares)
{
char *n2 = NULL;
bool bRetval;