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 ra...@apache.org on 2003/07/01 23:43:11 UTC

cvs commit: httpd-apreq-2/env libapreq_cgi.c

randyk      2003/07/01 14:43:11

  Modified:    env      libapreq_cgi.c
  Log:
  Reviewed by:	joes
  - include "apr_lib.h" for apr_toupper
  - s/apreq_request_parse/apreq_parse_request/
  
  Revision  Changes    Path
  1.8       +2 -1      httpd-apreq-2/env/libapreq_cgi.c
  
  Index: libapreq_cgi.c
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/env/libapreq_cgi.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- libapreq_cgi.c	27 Jun 2003 18:23:18 -0000	1.7
  +++ libapreq_cgi.c	1 Jul 2003 21:43:11 -0000	1.8
  @@ -58,6 +58,7 @@
   #include "apreq_parsers.h"
   #include "apreq_cookie.h"
   #include "apr_strings.h"
  +#include "apr_lib.h"
   
   #include <stdlib.h>
   #include <stdio.h>
  @@ -182,7 +183,7 @@
           APR_BRIGADE_INSERT_HEAD(ctx->bb, stdin_pipe);
       }
   
  -    return apreq_request_parse(apreq_request(env,NULL), ctx->bb);
  +    return apreq_parse_request(apreq_request(env,NULL), ctx->bb);
   }
   
   /** @} */