From: Bodo Möller Date: Mon, 6 May 2002 10:44:08 +0000 (+0000) Subject: fix warning X-Git-Tag: OpenSSL_0_9_7-beta1~71 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=442eb8a4c3dc08f475c077382c7add9b90c86d9e;p=oweals%2Fopenssl.git fix warning --- diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c index 9ce82376e8..43e8502b66 100644 --- a/ssl/s3_pkt.c +++ b/ssl/s3_pkt.c @@ -604,7 +604,7 @@ static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, if (prefix_len <= 0) goto err; - if (s->s3->wbuf.len < prefix_len + SSL3_RT_MAX_PACKET_SIZE) + if (s->s3->wbuf.len < (size_t)prefix_len + SSL3_RT_MAX_PACKET_SIZE) { /* insufficient space */ SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);