summaryrefslogtreecommitdiffstats
path: root/ssl/s3_pkt.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2000-02-25 15:09:04 +0000
committerGeoff Thorpe <geoff@openssl.org>2000-02-25 15:09:04 +0000
commit4621a000630afc0b9522576c6ffb0f3975ed16ff (patch)
treecaeb473418d700a0bab1848d277eab83b0ac2c13 /ssl/s3_pkt.c
parent7dce5a727a8aaab010e071f3689240b79c40eae6 (diff)
More VC++ pickiness. (destest.c doesn't have a "return" and the usual
signed/unsigned stuff in s3_pkt.c) Submitted by: Reviewed by: PR:
Diffstat (limited to 'ssl/s3_pkt.c')
-rw-r--r--ssl/s3_pkt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c
index 579058e0f2..6d9dad9040 100644
--- a/ssl/s3_pkt.c
+++ b/ssl/s3_pkt.c
@@ -706,8 +706,8 @@ static int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
*/
int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len)
{
- int al,i,j,ret;
- unsigned int n;
+ int al,j,ret;
+ unsigned int i,n;
SSL3_RECORD *rr;
void (*cb)()=NULL;