You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2003/01/11 00:32:33 UTC

cvs commit: modperl-2.0/xs/Apache/RequestUtil Apache__RequestUtil.h

dougm       2003/01/10 15:32:33

  Modified:    xs/Apache/RequestUtil Apache__RequestUtil.h
  Log:
  s/sv_catpvf/Perl_sv_catpvf/ required for -DPERL_CORE optimization
  
  Revision  Changes    Path
  1.14      +1 -1      modperl-2.0/xs/Apache/RequestUtil/Apache__RequestUtil.h
  
  Index: Apache__RequestUtil.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/Apache/RequestUtil/Apache__RequestUtil.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Apache__RequestUtil.h	6 Dec 2002 16:19:36 -0000	1.13
  +++ Apache__RequestUtil.h	10 Jan 2003 23:32:33 -0000	1.14
  @@ -225,7 +225,7 @@
       apr_table_do((int (*) (void *, const char *, const char *))
                     modperl_sv_str_header, (void *) retval, r->headers_in, NULL);
   
  -    sv_catpvf(retval, "\n%s %s\n", r->protocol, r->status_line);
  +    Perl_sv_catpvf(aTHX_ retval, "\n%s %s\n", r->protocol, r->status_line);
   
       apr_table_do((int (*) (void *, const char *, const char *))
                     modperl_sv_str_header, (void *) retval, r->headers_out, NULL);