From: Maxim Dounin Date: Mon, 17 Nov 2014 13:38:48 +0000 (+0300) Subject: SSL: logging level of "inappropriate fallback" (ticket #662). X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=1fd4cd0b96dfe5e87c652da93737add073fda34b;p=nginx.git SSL: logging level of "inappropriate fallback" (ticket #662). Patch by Erik Dubbelboer. --- diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c index 77600298c..ab54d88c4 100644 --- a/src/event/ngx_event_openssl.c +++ b/src/event/ngx_event_openssl.c @@ -1857,6 +1857,9 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err, #endif #ifdef SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING || n == SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING /* 345 */ +#endif +#ifdef SSL_R_INAPPROPRIATE_FALLBACK + || n == SSL_R_INAPPROPRIATE_FALLBACK /* 373 */ #endif || n == 1000 /* SSL_R_SSLV3_ALERT_CLOSE_NOTIFY */ || n == SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE /* 1010 */