summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-07-09 15:37:31 +0000
committerIgor Sysoev <igor@sysoev.ru>2004-07-09 15:37:31 +0000
commit14f279e7e5cad1d6da9f457ac26b8305bc22a3ee (patch)
tree6ad520e4c4a6d322c6a47c58e699fb309a24dc4f /src/http/modules
parente739eb7281e782ad944671002e51d0ba562c732c (diff)
downloadnginx-14f279e7e5cad1d6da9f457ac26b8305bc22a3ee.tar.gz
nginx-14f279e7e5cad1d6da9f457ac26b8305bc22a3ee.tar.bz2
nginx-0.0.7-2004-07-09-19:37:31 import
Diffstat (limited to 'src/http/modules')
-rw-r--r--src/http/modules/ngx_http_ssl_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_ssl_filter.c b/src/http/modules/ngx_http_ssl_filter.c
index b39fc38d5..5370426bb 100644
--- a/src/http/modules/ngx_http_ssl_filter.c
+++ b/src/http/modules/ngx_http_ssl_filter.c
@@ -199,7 +199,7 @@ static ngx_http_ssl_ctx_t *ngx_http_ssl_create_ctx(ngx_http_request_t *r)
void ngx_http_ssl_close_request(SSL *ssl, int mode)
{
SSL_set_shutdown(ssl, mode);
- SSL_smart_shutdown(ssl);
+ SSL_shutdown(ssl);
SSL_free(ssl);
}