diff options
author | jsing <> | 2014-05-31 13:55:45 +0000 |
---|---|---|
committer | jsing <> | 2014-05-31 13:55:45 +0000 |
commit | 271202bd3e03fb36da38b089fe9b5a4dfd261b6e (patch) | |
tree | 9e335d18bc84509db285ef8ce9a9d91ec4667073 /src/lib/libssl/ssl_lib.c | |
parent | f8714d1bf6f2bcedbbda341cf98326ef80874d62 (diff) | |
download | openbsd-271202bd3e03fb36da38b089fe9b5a4dfd261b6e.tar.gz openbsd-271202bd3e03fb36da38b089fe9b5a4dfd261b6e.tar.bz2 openbsd-271202bd3e03fb36da38b089fe9b5a4dfd261b6e.zip |
More manual OPENSSL_NO_EC and OPENSSL_NO_TLSEXT cleanup.
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 55c6b4493a..293292f1c3 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
@@ -553,7 +553,7 @@ SSL_free(SSL *s) | |||
553 | SSL_CTX_free(s->ctx); | 553 | SSL_CTX_free(s->ctx); |
554 | 554 | ||
555 | 555 | ||
556 | #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG) | 556 | #ifndef OPENSSL_NO_NEXTPROTONEG |
557 | free(s->next_proto_negotiated); | 557 | free(s->next_proto_negotiated); |
558 | #endif | 558 | #endif |
559 | 559 | ||