From: Jarno Huuskonen Date: Wed, 28 Dec 2016 08:49:01 +0000 (+0200) Subject: MINOR: proto_http.c 502 error txt typo. X-Git-Tag: v1.8-dev1~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59af2df102ccbbc62ab6855cc69dcf5933d1698f;p=thirdparty%2Fhaproxy.git MINOR: proto_http.c 502 error txt typo. [wt: should be backported to 1.7 and 1.6 as it was introduced in 1.6-dev4] --- diff --git a/src/proto_http.c b/src/proto_http.c index 8bc1636cfd..3490aa77d7 100644 --- a/src/proto_http.c +++ b/src/proto_http.c @@ -343,7 +343,7 @@ const char *get_reason(unsigned int status) case 499: return "client has closed connection"; case 500: return "Internal Server Error"; case 501: return "Not Implemented"; - case 502: return "Bad Gateway ou Proxy Error"; + case 502: return "Bad Gateway or Proxy Error"; case 503: return "Service Unavailable"; case 504: return "Gateway Time-out"; case 505: return "HTTP Version not supported";