jfclere     2004/08/04 03:43:15

  Modified:    ajp/proxy mod_proxy.c
  Log:
  dup real and fake.
  
  Revision  Changes    Path
  1.17      +2 -2      jakarta-tomcat-connectors/ajp/proxy/mod_proxy.c
  
  Index: mod_proxy.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/ajp/proxy/mod_proxy.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- mod_proxy.c       4 Aug 2004 08:56:54 -0000       1.16
  +++ mod_proxy.c       4 Aug 2004 10:43:15 -0000       1.17
  @@ -819,8 +819,8 @@
           return "ProxyPass needs a path when not defined in a location";
   
       new = apr_array_push(conf->aliases);
  -    new->fake = f;
  -    new->real = r;
  +    new->fake = apr_pstrdup(cmd->pool, f);
  +    new->real = apr_pstrdup(cmd->pool, r);
       
       arr = apr_table_elts(params);
       elts = (const apr_table_entry_t *)arr->elts;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to