From: Christos Tsantilas Date: Wed, 22 Apr 2015 19:36:24 +0000 (+0300) Subject: The %err_detail formating code print wrong error information X-Git-Tag: merge-candidate-3-v1~158 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4198165f2cfbec666e38b33a023ebe71262ae7e5;p=thirdparty%2Fsquid.git The %err_detail formating code print wrong error information The bug added with the r13732 patch. --- diff --git a/src/err_detail_type.h b/src/err_detail_type.h index 2e099f6ac8..a430c7af60 100644 --- a/src/err_detail_type.h +++ b/src/err_detail_type.h @@ -12,8 +12,8 @@ typedef enum { ERR_DETAIL_NONE, ERR_DETAIL_START = 100000, // to avoid clashes with most OS error numbers - ERR_DETAIL_REDIRECTOR_TIMEDOUT, // External redirector request timed-out - ERR_DETAIL_CLT_REQMOD_ABORT = ERR_DETAIL_START, // client-facing code detected transaction abort + ERR_DETAIL_REDIRECTOR_TIMEDOUT = ERR_DETAIL_START, // External redirector request timed-out + ERR_DETAIL_CLT_REQMOD_ABORT, // client-facing code detected transaction abort ERR_DETAIL_CLT_REQMOD_REQ_BODY, // client-facing code detected REQMOD request body adaptation failure ERR_DETAIL_CLT_REQMOD_RESP_BODY, // client-facing code detected REQMOD satisfaction reply body failure ERR_DETAIL_SRV_REQMOD_REQ_BODY, // server-facing code detected REQMOD request body abort