From: Amos Jeffries Date: Mon, 6 Sep 2010 10:34:19 +0000 (+1200) Subject: typo X-Git-Tag: take1~288 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5428b78c8cbfe0c753ad51b09613c63fcefa61d;p=thirdparty%2Fsquid.git typo --- diff --git a/src/esi/Expression.cc b/src/esi/Expression.cc index eb08050ea0..c92bfe8734 100644 --- a/src/esi/Expression.cc +++ b/src/esi/Expression.cc @@ -707,7 +707,7 @@ getsymbol (const char *s, char const **endptr) rv.eval = NULL; /* A literal */ rv.valuetype = ESI_EXPR_INVALID; rv.valuestored = ESI_LITERAL_INVALID; - rv..precedence = 1; /* A literal */ + rv.precedence = 1; /* A literal */ if (('0' <= *s && *s <= '9') || *s == '-') { size_t length = strspn (s, "0123456789.");