You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/10/01 18:07:17 UTC

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

wrowe       01/10/01 09:07:17

  Modified:    modules/ssl ssl_engine_io.c
  Log:
    BIO_write returns an int.  Whacha gonna do?  Kill the last non-ab warning.
  
  Revision  Changes    Path
  1.36      +1 -1      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.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- ssl_engine_io.c	2001/08/27 06:00:51	1.35
  +++ ssl_engine_io.c	2001/10/01 16:07:17	1.36
  @@ -259,7 +259,7 @@
   
   	n = BIO_write (pRec->pbioRead, data, len);
           
  -        if (n != len) {
  +        if ((apr_size_t)n != len) {
               /* this should never really happen, since we're just writing
                * into a memory buffer, unless, of course, we run out of 
                * memory