summaryrefslogtreecommitdiffstats
path: root/source/param
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-06-29 13:07:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:42 -0500
commitbf92d567984f00ebb998fb2485d0aac87d30b924 (patch)
tree8f36e27a294fae5d3924a255e58f122fa598b652 /source/param
parent639051e58d4da9fb1116c19f0790250640b6ac7a (diff)
downloadsamba-bf92d567984f00ebb998fb2485d0aac87d30b924.tar.gz
samba-bf92d567984f00ebb998fb2485d0aac87d30b924.tar.xz
samba-bf92d567984f00ebb998fb2485d0aac87d30b924.zip
r23657: Prevent setting of a global option in a share definition
in "net conf setparm". Michael
Diffstat (limited to 'source/param')
-rw-r--r--source/param/loadparm.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index 58ea751fa58..8c6c0f1afec 100644
--- a/source/param/loadparm.c
+++ b/source/param/loadparm.c
@@ -2789,6 +2789,24 @@ BOOL lp_parameter_valid(const char *pszParmName)
}
/***************************************************************************
+ Check whether the given name is the name of a global parameter.
+ Returns True for strings belonging to parameters of class
+ P_GLOBAL, False for all other strings, also for parametric options
+ and strings not belonging to any option.
+***************************************************************************/
+
+BOOL lp_parameter_is_global(const char *pszParmName)
+{
+ int num = map_parameter(pszParmName);
+
+ if (num >= 0) {
+ return (parm_table[num].p_class == P_GLOBAL);
+ }
+
+ return False;
+}
+
+/***************************************************************************
Map a parameter's string representation to something we can use.
Returns False if the parameter string is not recognised, else TRUE.
***************************************************************************/