trawick     01/02/16 11:46:26

  Modified:    test     sendfile.c
  Log:
  use the correct type for the len parameter to apr_recv(); this fixes
  a warning on HP-UX 11
  
  Revision  Changes    Path
  1.11      +1 -1      apr/test/sendfile.c
  
  Index: sendfile.c
  ===================================================================
  RCS file: /home/cvs/apr/test/sendfile.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- sendfile.c        2001/02/16 04:16:09     1.10
  +++ sendfile.c        2001/02/16 19:46:25     1.11
  @@ -512,7 +512,7 @@
       char buf[120];
       int i;
       apr_socket_t *newsock = NULL;
  -    apr_ssize_t bytes_read;
  +    apr_size_t bytes_read;
       apr_sockaddr_t *localsa;
       int family;
   
  
  
  

Reply via email to