diff options
Diffstat (limited to 'lib/param/loadparm.c')
-rw-r--r-- | lib/param/loadparm.c | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index fda1100eb7..e8b0874d4f 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -251,26 +251,17 @@ const char *lpcfg_get_parametric(struct loadparm_context *lp_ctx, return lp_ctx->s3_fns->get_parametric(service, type, option, NULL); } - data = (service == NULL ? lp_ctx->globals->param_opt : service->param_opt); - vfskey = talloc_asprintf(NULL, "%s:%s", type, option); if (vfskey == NULL) { DEBUG(0,("asprintf failed!\n")); return NULL; } - while (data) { - if (strwicmp(data->key, vfskey) == 0) { - talloc_free(vfskey); - return data->value; - } - data = data->next; - } - + /* + * Try to fetch the option from the service. + */ if (service != NULL) { - /* Try to fetch the same option but from globals */ - /* but only if we are not already working with globals */ - for (data = lp_ctx->globals->param_opt; data; + for (data = service->param_opt; data; data = data->next) { if (strwicmp(data->key, vfskey) == 0) { talloc_free(vfskey); @@ -279,6 +270,18 @@ const char *lpcfg_get_parametric(struct loadparm_context *lp_ctx, } } + /* + * Fall back to fetching from the globals. + */ + data = lp_ctx->globals->param_opt; + while (data) { + if (strwicmp(data->key, vfskey) == 0) { + talloc_free(vfskey); + return data->value; + } + data = data->next; + } + talloc_free(vfskey); return NULL; |