summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-07-22 17:16:02 +0200
committerMichael Adam <obnox@samba.org>2011-07-28 11:17:25 +0200
commit1379ef8b7bbc09a0863705933bd57e5b6275d6a9 (patch)
treeefedc538766b8c188ad300f33af8af958deebaae /source3/param
parent13329112e9fc259a55dc43b6406fb86540784bca (diff)
downloadsamba-1379ef8b7bbc09a0863705933bd57e5b6275d6a9.tar.gz
samba-1379ef8b7bbc09a0863705933bd57e5b6275d6a9.tar.bz2
samba-1379ef8b7bbc09a0863705933bd57e5b6275d6a9.zip
s3:loadparm: add a convenience wrapper lp_load_global()
This is the use case for most callers, especially the client tools.
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 32aaed4fdb..2f2d69b185 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -9118,6 +9118,20 @@ bool lp_load_initial_only(const char *pszFname)
false); /* load_all_shares*/
}
+/**
+ * most common lp_load wrapper, loading only the globals
+ */
+bool lp_load_global(const char *file_name)
+{
+ return lp_load_ex(file_name,
+ true, /* global_only */
+ false, /* save_defaults */
+ false, /* add_ipc */
+ true, /* initialize_globals */
+ true, /* allow_include_registry */
+ false); /* load_all_shares*/
+}
+
bool lp_load_with_registry_shares(const char *pszFname,
bool global_only,
bool save_defaults,