From: phk Date: Sun, 5 Oct 2008 20:09:40 +0000 (+0000) Subject: Make an error message slightly less confusing. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b03dbe402fdf390ac83f6976e821028f778f641f;p=varnish Make an error message slightly less confusing. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3249 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/lib/libvcl/vcc_parse.c b/varnish-cache/lib/libvcl/vcc_parse.c index 3bfc4797..cc5cb32a 100644 --- a/varnish-cache/lib/libvcl/vcc_parse.c +++ b/varnish-cache/lib/libvcl/vcc_parse.c @@ -306,7 +306,7 @@ Cond_Int(const struct var *vp, struct tokenlist *tl) default: vsb_printf(tl->sb, "Invalid condition "); vcc_ErrToken(tl, tl->t); - vsb_printf(tl->sb, " on integer variable\n"); + vsb_printf(tl->sb, " on numeric variable\n"); vsb_printf(tl->sb, " only '==', '!=', '<', '>', '<=' and '>=' are legal\n"); vcc_ErrWhere(tl, tl->t);