You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@apache.org on 2001/07/07 18:20:47 UTC

cvs commit: httpd-2.0/modules/http http_protocol.c

dreid       01/07/07 09:20:46

  Modified:    modules/http http_protocol.c
  Log:
  s/cont/pool/
  
  This gets us building again after the change in APR.
  
  Revision  Changes    Path
  1.327     +2 -2      httpd-2.0/modules/http/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/http/http_protocol.c,v
  retrieving revision 1.326
  retrieving revision 1.327
  diff -u -r1.326 -r1.327
  --- http_protocol.c	2001/06/13 16:48:37	1.326
  +++ http_protocol.c	2001/07/07 16:20:45	1.327
  @@ -995,7 +995,7 @@
   
       values = (apr_array_header_t *)d;
   
  -    e = apr_pstrdup(values->cont, val);
  +    e = apr_pstrdup(values->pool, val);
   
       do {
           /* Find a non-empty fieldname */
  @@ -1940,7 +1940,7 @@
       imethods = (char **) src->method_list->elts;
       for (i = 0; i < src->method_list->nelts; ++i) {
           omethods = (char **) apr_array_push(dest->method_list);
  -        *omethods = apr_pstrdup(dest->method_list->cont, imethods[i]);
  +        *omethods = apr_pstrdup(dest->method_list->pool, imethods[i]);
       }
   }