diff options
Diffstat (limited to 'ssl/s3_both.c')
-rw-r--r-- | ssl/s3_both.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/s3_both.c b/ssl/s3_both.c index bf990bf3cf..6218545fc4 100644 --- a/ssl/s3_both.c +++ b/ssl/s3_both.c @@ -236,11 +236,12 @@ int ssl3_get_finished(SSL *s, int a, int b) */ #endif + /* 64 argument should actually be 36+4 :-) */ n=s->method->ssl_get_message(s, a, b, SSL3_MT_FINISHED, - 64, /* should actually be 36+4 :-) */ + 64, &ok); if (!ok) return((int)n); |