]> granicus.if.org Git - apache/commitdiff
be nice and accept == as well as token_eq.
authorAndré Malo <nd@apache.org>
Thu, 28 Aug 2003 01:35:46 +0000 (01:35 +0000)
committerAndré Malo <nd@apache.org>
Thu, 28 Aug 2003 01:35:46 +0000 (01:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101120 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_include.c

index 7119b7e86ba14534fe8d2ecaecdff89d62da9213..1532a13fdc9d48dce95d8c044afa5ff12934c0f0 100644 (file)
@@ -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 '!':