dgaudet     98/03/26 10:52:54

  Modified:    src      CHANGES buff.c
  Log:
  Fix an incompatible pointer type assignment.
  
  PR:           2001
  
  Revision  Changes    Path
  1.301     +3 -0      apache-1.2/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.2/src/CHANGES,v
  retrieving revision 1.300
  retrieving revision 1.301
  diff -u -r1.300 -r1.301
  --- CHANGES   1998/03/16 19:38:53     1.300
  +++ CHANGES   1998/03/26 18:52:48     1.301
  @@ -1,5 +1,8 @@
   Changes with Apache 1.2.7
   
  +  *) Fix an incompatible pointer type assignment warning in buff.c.
  +     [Dean Gaudet] PR#2001
  +
     *) mod_proxy was not clearing the Proxy-Connection header from
        requests; now it does.  This did not violate any spec, however 
        causes poor interactions when you are talking to remote proxies.  
  
  
  
  1.30      +1 -1      apache-1.2/src/buff.c
  
  Index: buff.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.2/src/buff.c,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- buff.c    1998/02/07 10:26:12     1.29
  +++ buff.c    1998/03/26 18:52:50     1.30
  @@ -234,7 +234,7 @@
   end_chunk( BUFF *fb )
   {
       int i;
  -    char *strp;
  +    unsigned char *strp;
   
       if( fb->outchunk == -1 ) {
        /* not chunking */
  
  
  

Reply via email to