From: Brian West Date: Mon, 22 Aug 2016 20:19:56 +0000 (-0500) Subject: FS-8608 found while doing config audit, params should have dashes X-Git-Tag: v1.6.10~1^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cc2653edc13b5052f8953a4057cab10094328b0;p=thirdparty%2Ffreeswitch.git FS-8608 found while doing config audit, params should have dashes --- 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);