From fae9e215c65ba00052da6b256d7607c9c90c2ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= Date: Thu, 18 Sep 2014 14:16:58 +0200 Subject: [PATCH] Passed incorrect pointer to SSL handshake handler. --- ngx_http_auth_ldap_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngx_http_auth_ldap_module.c b/ngx_http_auth_ldap_module.c index 98be280..40cca18 100644 --- a/ngx_http_auth_ldap_module.c +++ b/ngx_http_auth_ldap_module.c @@ -1213,7 +1213,7 @@ ngx_http_auth_ldap_ssl_handshake(ngx_http_auth_ldap_connection_t *c) return; } - ngx_http_auth_ldap_ssl_handshake_handler(c); + ngx_http_auth_ldap_ssl_handshake_handler(c->conn.connection); return; } #endif