diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2016-04-11 15:46:36 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2016-04-11 15:46:36 +0300 |
commit | c17bc31d41a0372002115899a2c64e89aeca7e7d (patch) | |
tree | 822ec9a74beaa36c7313410630c57e9b7971fc27 /src/http/ngx_http_upstream_round_robin.c | |
parent | 2015a548214b08be1a556f8b8c447dcb61356448 (diff) | |
download | nginx-c17bc31d41a0372002115899a2c64e89aeca7e7d.tar.gz nginx-c17bc31d41a0372002115899a2c64e89aeca7e7d.zip |
SSL: removed OpenSSL 0.9.7 compatibility.
Diffstat (limited to 'src/http/ngx_http_upstream_round_robin.c')
-rw-r--r-- | src/http/ngx_http_upstream_round_robin.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/http/ngx_http_upstream_round_robin.c b/src/http/ngx_http_upstream_round_robin.c index f72de3ee6..8e7b4ea8b 100644 --- a/src/http/ngx_http_upstream_round_robin.c +++ b/src/http/ngx_http_upstream_round_robin.c @@ -669,10 +669,7 @@ ngx_http_upstream_set_round_robin_peer_session(ngx_peer_connection_t *pc, ngx_http_upstream_rr_peer_t *peer; #if (NGX_HTTP_UPSTREAM_ZONE) int len; -#if OPENSSL_VERSION_NUMBER >= 0x0090707fL - const -#endif - u_char *p; + const u_char *p; ngx_http_upstream_rr_peers_t *peers; u_char buf[NGX_SSL_MAX_SESSION_SIZE]; #endif |