You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by br...@apache.org on 2002/05/04 08:10:59 UTC

cvs commit: httpd-2.0/modules/filters mod_include.c

brianp      02/05/03 23:10:59

  Modified:    modules/filters mod_include.c
  Log:
  Fix for PR 8462: When tokenizing an unquoted string literal, don't
  consume a ')' that immediately follows it.
  
  Revision  Changes    Path
  1.221     +3 -0      httpd-2.0/modules/filters/mod_include.c
  
  Index: mod_include.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.c,v
  retrieving revision 1.220
  retrieving revision 1.221
  diff -u -r1.220 -r1.221
  --- mod_include.c	17 Apr 2002 13:06:32 -0000	1.220
  +++ mod_include.c	4 May 2002 06:10:59 -0000	1.221
  @@ -1896,6 +1896,9 @@
                   }
               }
           }
  +        if (tkn_fnd) {
  +            break;
  +        }
       }
   
       /* If qs is still set, we have an unmatched quote */