]> git.kaiwu.me - nginx.git/commitdiff
decrease SSL handshake error level to info
authorIgor Sysoev <igor@sysoev.ru>
Thu, 29 Jul 2010 09:30:15 +0000 (09:30 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Thu, 29 Jul 2010 09:30:15 +0000 (09:30 +0000)
src/event/ngx_event_openssl.c

index 04baa81f8821e35bf09879b2adeec0d7cc9b067f..813f622853049120b489422df16c67350b43a1e2 100644 (file)
@@ -1312,7 +1312,8 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err,
         n = ERR_GET_REASON(ERR_peek_error());
 
             /* handshake failures */
-        if (n == SSL_R_DIGEST_CHECK_FAILED                           /*  149 */
+        if (n == SSL_R_BLOCK_CIPHER_PAD_IS_WRONG                     /*  129 */
+            || n == SSL_R_DIGEST_CHECK_FAILED                        /*  149 */
             || n == SSL_R_LENGTH_MISMATCH                            /*  159 */
             || n == SSL_R_NO_CIPHERS_PASSED                          /*  182 */
             || n == SSL_R_NO_CIPHERS_SPECIFIED                       /*  183 */