From fb76ad8d43e37b399f22932c8ccc85578fcdf7b5 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 6 Jan 2015 02:17:07 +0000 Subject: [PATCH] fix compilation error Reviewed-by: Tim Hudson --- ssl/d1_srvr.c | 2 +- ssl/s3_srvr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ssl/d1_srvr.c b/ssl/d1_srvr.c index 8a5c5a1cd2..059385c310 100644 --- a/ssl/d1_srvr.c +++ b/ssl/d1_srvr.c @@ -480,7 +480,7 @@ int dtls1_accept(SSL *s) /* only send if a DH key exchange or * RSA but we have a sign only certificate */ - if ( + if (0 /* PSK: send ServerKeyExchange if PSK identity * hint if provided */ #ifndef OPENSSL_NO_PSK diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index e5a32ee90f..90e95d6bc1 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -471,7 +471,7 @@ int ssl3_accept(SSL *s) * server certificate contains the server's * public key for key exchange. */ - if ( + if (0 /* PSK: send ServerKeyExchange if PSK identity * hint if provided */ #ifndef OPENSSL_NO_PSK -- 2.25.1