Commit d29a380d authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add necessary quoting.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4464 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent d6278785
......@@ -406,13 +406,13 @@ mgt_push_vcls_and_start(unsigned *status, char **p)
VTAILQ_FOREACH(vp, &vclhead, list) {
if (mgt_cli_askchild(status, p,
"vcl.load %s %s\n", vp->name, vp->fname))
"vcl.load \"%s\" %s\n", vp->name, vp->fname))
return (1);
free(*p);
if (!vp->active)
continue;
if (mgt_cli_askchild(status, p,
"vcl.use %s\n", vp->name))
"vcl.use \"%s\"\n", vp->name))
return (1);
free(*p);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment