On Mon, Apr 29, 2002 at 12:28:33PM +0200, [EMAIL PROTECTED] wrote:

>   Log:
>   Synchronise with 0.9.7-stable.
>   
>   Revision  Changes    Path
>   1.49      +2 -2      openssl/ssl/s3_pkt.c
>   
>   Index: s3_pkt.c
>   ===================================================================
>   RCS file: /e/openssl/cvs/openssl/ssl/s3_pkt.c,v
>   retrieving revision 1.48
>   retrieving revision 1.49
>   diff -u -r1.48 -r1.49
>   --- s3_pkt.c        2002/04/20 10:23:19     1.48
>   +++ s3_pkt.c        2002/04/29 10:28:29     1.49
>   @@ -245,7 +245,7 @@
>               extra=SSL3_RT_MAX_EXTRA;
>       else
>               extra=0;
>   -   if ((size_t)extra != (s->s3->rbuf.len - SSL3_RT_MAX_PACKET_SIZE))
>   +   if (extra != (s->s3->rbuf.len - SSL3_RT_MAX_PACKET_SIZE))
>               {
>               /* actually likely an application error: 
>SLS_OP_MICROSOFT_BIG_SSLV3_BUFFER
>                * set after ssl3_setup_buffers() was done */
>   @@ -605,7 +605,7 @@
>                       if (prefix_len <= 0)
>                               goto err;
>    
>   -                   if (s->s3->wbuf.len < (size_t)prefix_len + 
>SSL3_RT_MAX_PACKET_SIZE)
>   +                   if (s->s3->wbuf.len < prefix_len + SSL3_RT_MAX_PACKET_SIZE)
>                               {

Here you reversing patches that you had committed for 0.9.8-dev but
not for 0.9.7-stable ...


-- 
Bodo Möller <[EMAIL PROTECTED]>
PGP http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller/0x36d2c658.html
* TU Darmstadt, Theoretische Informatik, Alexanderstr. 10, D-64283 Darmstadt
* Tel. +49-6151-16-6628, Fax +49-6151-16-6036
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to