You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2003/10/01 18:49:11 UTC

cvs commit: httpd-apreq-2/src apreq_params.c

joes        2003/10/01 09:49:11

  Modified:    src      apreq_params.c
  Log:
  Allow unencoded "=" signs to occur in a (query string) param value.
  
  Revision  Changes    Path
  1.34      +1 -3      httpd-apreq-2/src/apreq_params.c
  
  Index: apreq_params.c
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/src/apreq_params.c,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- apreq_params.c	17 Jul 2003 02:59:33 -0000	1.33
  +++ apreq_params.c	1 Oct 2003 16:49:11 -0000	1.34
  @@ -256,10 +256,8 @@
           case '=':
               if (nlen == 0) {
                   nlen = qs - start;
  -                break;
               }
  -            else
  -                return APR_BADCH;
  +            break;
   
           case '&':
           case ';':