decrease SSL handshake error level to info

This commit is contained in:
Igor Sysoev 2010-07-29 09:30:15 +00:00
parent 591700b8f7
commit 6b45b065fe

View 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 */