From 7cc2653edc13b5052f8953a4057cab10094328b0 Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 22 Aug 2016 15:19:56 -0500 Subject: [PATCH] FS-8608 found while doing config audit, params should have dashes --- src/mod/endpoints/mod_verto/mod_verto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index 817b0e837e..ca2153eefe 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -4677,7 +4677,7 @@ static switch_status_t parse_config(const char *cf) vhost->alias = switch_core_strdup(vhost->pool, val); } else if (!strcasecmp(var, "root")) { vhost->root = switch_core_strdup(vhost->pool, val); - } else if (!strcasecmp(var, "script_root")) { + } else if (!strcasecmp(var, "script-root")) { vhost->script_root = switch_core_strdup(vhost->pool, val); } else if (!strcasecmp(var, "index")) { vhost->index = switch_core_strdup(vhost->pool, val);