stas        2003/09/04 16:57:58

  Modified:    xs/APR/PerlIO apr_perlio.c
  Log:
  should be using 'char', not 'const char' when modifying it
  
  Revision  Changes    Path
  1.33      +1 -1      modperl-2.0/xs/APR/PerlIO/apr_perlio.c
  
  Index: apr_perlio.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/APR/PerlIO/apr_perlio.c,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -u -r1.32 -r1.33
  --- apr_perlio.c      4 Sep 2003 04:34:05 -0000       1.32
  +++ apr_perlio.c      4 Sep 2003 23:57:58 -0000       1.33
  @@ -167,7 +167,7 @@
   
   #ifdef MP_TRACE
       {
  -        const char *trace_buf = (char *)apr_pcalloc(st->pool,
  +        char *trace_buf = (char *)apr_pcalloc(st->pool,
                                                      sizeof(char*)*count);
           memcpy((void*)trace_buf, vbuf, count);
           trace_buf[count] = '\0';
  
  
  

Reply via email to