aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-02-28 00:24:04 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-02-28 00:24:04 +0000
commit2b13f80360c321ce7cd336a286a057489bac9660 (patch)
treea04d1ba27d7fecbdae007c824ef345ebbf184278
parent40c5eaeeec97eadc1e9aab8678e62cccdf1902fe (diff)
downloadopenssl-2b13f80360c321ce7cd336a286a057489bac9660.zip
openssl-2b13f80360c321ce7cd336a286a057489bac9660.tar.gz
openssl-2b13f80360c321ce7cd336a286a057489bac9660.tar.bz2
algorithms field has changed in 1.0.0 and later: update
-rw-r--r--ssl/s3_clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c
index 3f87da5..41769fe 100644
--- a/ssl/s3_clnt.c
+++ b/ssl/s3_clnt.c
@@ -982,7 +982,7 @@ int ssl3_get_server_certificate(SSL *s)
if (!ok) return((int)n);
if ((s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE) ||
- ((s->s3->tmp.new_cipher->algorithms & SSL_aKRB5) &&
+ ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5) &&
(s->s3->tmp.message_type == SSL3_MT_SERVER_DONE)))
{
s->s3->tmp.reuse_message=1;