diff options
author | Michael Adam <obnox@samba.org> | 2010-08-20 11:14:06 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-08-20 11:14:06 +0200 |
commit | 34092c11b49a8bb16838be414cb71b0b5c2136bf (patch) | |
tree | ae5341842549b6f073eeb31605fa1c98ba717fba /source3/param | |
parent | 0ec0095d1a40435042b8ff9e4bc7fedbeb371e5f (diff) | |
download | samba-34092c11b49a8bb16838be414cb71b0b5c2136bf.tar.gz samba-34092c11b49a8bb16838be414cb71b0b5c2136bf.tar.bz2 samba-34092c11b49a8bb16838be414cb71b0b5c2136bf.zip |
s3:loadparm: make lp_load_ex static. We have wrappers for external callers.
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index f02ef261df..340031b45f 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -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; |