Consistency with s2_... and s23_... variants (no real functional

change)
This commit is contained in:
Bodo Möller 2001-10-25 08:17:53 +00:00
parent ce15d5a9dc
commit 4d635a7001
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}

View file

@ -573,9 +573,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);
}