From 0b9925be4fa46ecc8b4d0e34191dc4f4a587f8d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Thu, 25 Oct 2001 08:18:56 +0000 Subject: [PATCH] Consistency with s2_... and s23_... variants (no real functional change) --- ssl/s3_clnt.c | 2 +- ssl/s3_srvr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c index e02f625155..4d6da271a8 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -441,9 +441,9 @@ int ssl3_connect(SSL *s) skip=0; } end: + s->in_handshake--; if (cb != NULL) cb(s,SSL_CB_CONNECT_EXIT,ret); - s->in_handshake--; return(ret); } diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index 21bd968579..0280bb92f7 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -561,9 +561,9 @@ int ssl3_accept(SSL *s) end: /* BIO_flush(s->wbio); */ + s->in_handshake--; if (cb != NULL) cb(s,SSL_CB_ACCEPT_EXIT,ret); - s->in_handshake--; return(ret); } -- 2.25.1