summaryrefslogtreecommitdiffstats
path: root/source3/param/loadparm.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r--source3/param/loadparm.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 2a3a8cba06..095a25816c 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -1171,57 +1171,6 @@ static bool is_synonym_of(int parm1, int parm2, bool *inverse);
* pointer to parametrical option value if it exists or NULL otherwise. Actual
* parametrical functions are quite simple
*/
-static struct parmlist_entry *get_parametrics_by_service(struct loadparm_service *service, const char *type,
- const char *option, struct parmlist_entry *global_opts)
-{
- char* param_key;
- struct parmlist_entry *data;
- TALLOC_CTX *mem_ctx = talloc_stackframe();
-
- param_key = talloc_asprintf(mem_ctx, "%s:%s", type, option);
- if (param_key == NULL) {
- DEBUG(0,("asprintf failed!\n"));
- TALLOC_FREE(mem_ctx);
- return NULL;
- }
-
- /*
- * Try to fetch the option from the service.
- */
- if (service != NULL) {
- data = service->param_opt;
- while (data) {
- if (strwicmp(data->key, param_key) == 0) {
- TALLOC_FREE(mem_ctx);
- return data;
- }
- data = data->next;
- }
- }
-
- /*
- * Fall back to fetching from the globals.
- */
- data = global_opts;
- while (data) {
- if (strwicmp(data->key, param_key) == 0) {
- TALLOC_FREE(mem_ctx);
- return data;
- }
- data = data->next;
- }
-
-
- TALLOC_FREE(mem_ctx);
-
- return NULL;
-}
-
-/*
- * This is a helper function for parametrical options support. It returns a
- * pointer to parametrical option value if it exists or NULL otherwise. Actual
- * parametrical functions are quite simple
- */
static struct parmlist_entry *get_parametrics(int snum, const char *type,
const char *option)
{