From 5d82c4a6e5a9174469a8ccb61b2d61c188f6400f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= Date: Thu, 15 May 2014 19:22:26 +0200 Subject: [PATCH] Removed recursion during ssl handshake (should fix #34) --- 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 3ed2049..ccd4667 100644 --- a/ngx_http_auth_ldap_module.c +++ b/ngx_http_auth_ldap_module.c @@ -1209,7 +1209,7 @@ ngx_http_auth_ldap_ssl_handshake(ngx_http_auth_ldap_connection_t *c) return; } - ngx_http_auth_ldap_ssl_handshake(c); + ngx_http_auth_ldap_ssl_handshake_handler(c); return; } #endif