You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/08/10 14:46:58 UTC

cvs commit: apache-2.0/src/main http_protocol.c

trawick     00/08/10 05:46:57

  Modified:    src/main http_protocol.c
  Log:
  Change use of ap_pstrcat() to apr_pstrcat() in previous commit so
  that Apache builds again.
  
  Revision  Changes    Path
  1.103     +1 -1      apache-2.0/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_protocol.c,v
  retrieving revision 1.102
  retrieving revision 1.103
  diff -u -r1.102 -r1.103
  --- http_protocol.c	2000/08/10 11:22:56	1.102
  +++ http_protocol.c	2000/08/10 12:46:52	1.103
  @@ -1599,7 +1599,7 @@
   	 * Append all of the elements of r->allowed_xmethods
   	 */
   	for (i = 0; i < r->allowed_xmethods->nelts; ++i) {
  -	    list = ap_pstrcat(r->pool, list, ", ", xmethod[i], NULL);
  +	    list = apr_pstrcat(r->pool, list, ", ", xmethod[i], NULL);
   	}
       }
       /*