summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lowrey <rdlowrey@php.net>2014-02-25 19:12:33 -0700
committerDaniel Lowrey <rdlowrey@php.net>2014-02-25 19:12:33 -0700
commit2bc0dbab443c54425c235590a43af65a80dc7392 (patch)
tree39ae766d5ebf29d9f65f7869875e141006563e42
parent781d0b9ee3e950a44683fb2a2f2b427aa73e1292 (diff)
downloadphp-git-2bc0dbab443c54425c235590a43af65a80dc7392.tar.gz
Prevent implicit function declaration when TLSEXT unavailable
-rw-r--r--ext/openssl/xp_ssl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c
index 8971cdabc1..7424cd8de2 100644
--- a/ext/openssl/xp_ssl.c
+++ b/ext/openssl/xp_ssl.c
@@ -800,6 +800,7 @@ static int php_enable_server_crypto_opts(php_stream *stream,
return 1;
}
+#if OPENSSL_VERSION_NUMBER >= 0x00908070L && !defined(OPENSSL_NO_TLSEXT)
static inline void enable_client_sni(php_stream *stream, php_openssl_netstream_data_t *sslsock) /* {{{ */
{
zval **val;
@@ -819,6 +820,7 @@ static inline void enable_client_sni(php_stream *stream, php_openssl_netstream_d
}
}
/* }}} */
+#endif
static inline int php_openssl_enable_crypto(php_stream *stream,
php_openssl_netstream_data_t *sslsock,