Commit 7ff51358 authored by Tollef Fog Heen's avatar Tollef Fog Heen

fix typo in error message


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3199 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 01d67907
......@@ -658,7 +658,7 @@ vcc_ParseBackendHost(struct tokenlist *tl, int *nbh, const struct token *name, c
vcc_ParseHostDef(tl, nbh, name, qual, serial);
if (tl->err) {
vsb_printf(tl->sb,
"\nIn backend host specfication starting at:\n");
"\nIn backend host specification starting at:\n");
vcc_ErrWhere(tl, t);
}
return;
......@@ -762,7 +762,7 @@ vcc_ParseDirector(struct tokenlist *tl)
}
if (tl->err) {
vsb_printf(tl->sb,
"\nIn %.*s specfication starting at:\n", PF(t_first));
"\nIn %.*s specification starting at:\n", PF(t_first));
vcc_ErrWhere(tl, t_first);
return;
}
......
......@@ -125,7 +125,7 @@ vcc_ParseRandomDirector(struct tokenlist *tl, const struct token *t_policy, cons
vcc_FieldsOk(tl, mfs);
if (tl->err) {
vsb_printf(tl->sb,
"\nIn member host specfication starting at:\n");
"\nIn member host specification starting at:\n");
vcc_ErrWhere(tl, t_be);
return;
}
......
......@@ -88,7 +88,7 @@ vcc_ParseRoundRobinDirector(struct tokenlist *tl, const struct token *t_policy,
vcc_FieldsOk(tl, fs);
if (tl->err) {
vsb_printf(tl->sb,
"\nIn member host specfication starting at:\n");
"\nIn member host specification starting at:\n");
vcc_ErrWhere(tl, t_be);
return;
}
......
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