From 0e7a32b55e8c5b1ec7c2bb755213d076390cc55e Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sat, 5 Jul 2014 23:56:54 +0200 Subject: [PATCH] s3_pkt.c: fix typo. --- ssl/s3_pkt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c index dab2bd766f..8fc3bb4e0b 100644 --- a/ssl/s3_pkt.c +++ b/ssl/s3_pkt.c @@ -714,7 +714,7 @@ int ssl3_write_bytes(SSL *s, int type, const void *buf_, int len) int packlen; /* minimize address aliasing conflicts */ - if ((max_send_fragment&0xffff) == 0) + if ((max_send_fragment&0xfff) == 0) max_send_fragment -= 512; if (tot==0 || wb->buf==NULL) /* allocate jumbo buffer */ -- 2.25.1