You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2001/08/08 04:09:26 UTC

cvs commit: httpd-2.0/modules/ssl ssl_engine_io.c

dougm       01/08/07 19:09:26

  Modified:    modules/ssl ssl_engine_io.c
  Log:
  s/apr_size_t/apr_off_t/ for input filter
  
  Revision  Changes    Path
  1.12      +2 -2      httpd-2.0/modules/ssl/ssl_engine_io.c
  
  Index: ssl_engine_io.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_io.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ssl_engine_io.c	2001/07/31 16:41:13	1.11
  +++ ssl_engine_io.c	2001/08/08 02:09:26	1.12
  @@ -222,7 +222,7 @@
   }
   
   static apr_status_t churn (SSLFilterRec *pRec,
  -        apr_read_type_e eReadType, apr_size_t *readbytes)
  +        apr_read_type_e eReadType, apr_off_t *readbytes)
   {
       apr_bucket *pbktIn;
       ap_input_mode_t eMode = (eReadType == APR_BLOCK_READ) 
  @@ -362,7 +362,7 @@
   }
   
   apr_status_t ssl_io_filter_Input(ap_filter_t *f,apr_bucket_brigade *pbbOut,
  -                          ap_input_mode_t eMode, apr_size_t *readbytes)
  +                          ap_input_mode_t eMode, apr_off_t *readbytes)
   {
       apr_status_t ret;
       SSLFilterRec *pRec        = f->ctx;