summaryrefslogtreecommitdiff
path: root/source3/lib/util_reg.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/util_reg.c')
-rw-r--r--source3/lib/util_reg.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/source3/lib/util_reg.c b/source3/lib/util_reg.c
index a2a62973de..7366dcb2a7 100644
--- a/source3/lib/util_reg.c
+++ b/source3/lib/util_reg.c
@@ -119,25 +119,3 @@ void normalize_dbkey(char *key)
string_sub(key, "\\", "/", len+1);
strupper_m(key);
}
-
-/*
- * check whether a given value name is forbidden in registry (smbconf)
- */
-bool registry_smbconf_valname_forbidden(const char *valname)
-{
- /* hard code the list of forbidden names here for now */
- const char *forbidden_valnames[] = {
- "lock directory",
- "lock dir",
- "config backend",
- NULL
- };
- const char **forbidden = NULL;
-
- for (forbidden = forbidden_valnames; *forbidden != NULL; forbidden++) {
- if (strwicmp(valname, *forbidden) == 0) {
- return true;
- }
- }
- return false;
-}