From a9cca97472d0429c78332687919a3398607009b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Thu, 28 Aug 2003 01:35:46 +0000 Subject: [PATCH] be nice and accept == as well as token_eq. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101120 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index 7119b7e86b..1532a13fdc 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -1023,6 +1023,7 @@ static int get_ptoken(apr_pool_t *pool, const char **parse, token_t *token) TYPE_TOKEN(token, TOKEN_RBRACE); return 0; case '=': + if (**parse == '=') ++*parse; TYPE_TOKEN(token, TOKEN_EQ); return 0; case '!': -- 2.50.1