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 ...@@ -658,7 +658,7 @@ vcc_ParseBackendHost(struct tokenlist *tl, int *nbh, const struct token *name, c
vcc_ParseHostDef(tl, nbh, name, qual, serial); vcc_ParseHostDef(tl, nbh, name, qual, serial);
if (tl->err) { if (tl->err) {
vsb_printf(tl->sb, vsb_printf(tl->sb,
"\nIn backend host specfication starting at:\n"); "\nIn backend host specification starting at:\n");
vcc_ErrWhere(tl, t); vcc_ErrWhere(tl, t);
} }
return; return;
...@@ -762,7 +762,7 @@ vcc_ParseDirector(struct tokenlist *tl) ...@@ -762,7 +762,7 @@ vcc_ParseDirector(struct tokenlist *tl)
} }
if (tl->err) { if (tl->err) {
vsb_printf(tl->sb, 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); vcc_ErrWhere(tl, t_first);
return; return;
} }
......
...@@ -125,7 +125,7 @@ vcc_ParseRandomDirector(struct tokenlist *tl, const struct token *t_policy, cons ...@@ -125,7 +125,7 @@ vcc_ParseRandomDirector(struct tokenlist *tl, const struct token *t_policy, cons
vcc_FieldsOk(tl, mfs); vcc_FieldsOk(tl, mfs);
if (tl->err) { if (tl->err) {
vsb_printf(tl->sb, vsb_printf(tl->sb,
"\nIn member host specfication starting at:\n"); "\nIn member host specification starting at:\n");
vcc_ErrWhere(tl, t_be); vcc_ErrWhere(tl, t_be);
return; return;
} }
......
...@@ -88,7 +88,7 @@ vcc_ParseRoundRobinDirector(struct tokenlist *tl, const struct token *t_policy, ...@@ -88,7 +88,7 @@ vcc_ParseRoundRobinDirector(struct tokenlist *tl, const struct token *t_policy,
vcc_FieldsOk(tl, fs); vcc_FieldsOk(tl, fs);
if (tl->err) { if (tl->err) {
vsb_printf(tl->sb, vsb_printf(tl->sb,
"\nIn member host specfication starting at:\n"); "\nIn member host specification starting at:\n");
vcc_ErrWhere(tl, t_be); vcc_ErrWhere(tl, t_be);
return; 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