This commit is contained in:
Zhi Guan
2017-12-08 21:29:23 +08:00
parent e586232c5b
commit 2c2739c9e2
3 changed files with 4 additions and 4 deletions

View File

@@ -690,14 +690,14 @@ int ossl_statem_server_construct_message(SSL *s)
case TLS_ST_SW_CERT:
#ifndef OPENSSL_NO_GMTLS
if (SSL_IS_GMTLS(s))
return tls_construct_server_certificate(s)
return tls_construct_server_certificate(s);
#endif
return tls_construct_server_certificate(s);
case TLS_ST_SW_KEY_EXCH:
#ifndef OPENSSL_NO_GMTLS
if (SSL_IS_GMTLS(s))
return gmtls_construct_server_key_exchange(s)
return gmtls_construct_server_key_exchange(s);
#endif
return tls_construct_server_key_exchange(s);