commit | 4e8ec500e54c2781964cb2af7b3e7545138fea28 | [log] [tgz] |
---|---|---|
author | Yves Lafon <ylafon@w3.org> | Mon Mar 11 11:06:05 2013 -0400 |
committer | Willy Tarreau <w@1wt.eu> | Fri Mar 29 19:08:09 2013 +0100 |
tree | 2d4d148f4c6c44b3f69a1b46e3eefc0ddb23572d | |
parent | 2fef9b1ef6f346e75016340531f6e1da5d9d5d2b [diff] |
MINOR: http: status code 303 is HTTP/1.1 only Don't return a 303 redirect with "HTTP/1.0" as it's HTTP/1.1 only.
diff --git a/src/proto_http.c b/src/proto_http.c index 0f14016..4644acf 100644 --- a/src/proto_http.c +++ b/src/proto_http.c
@@ -2979,7 +2979,7 @@ * the browse to the stats page with a GET. */ chunk_printf(&trash, - "HTTP/1.0 303 See Other\r\n" + "HTTP/1.1 303 See Other\r\n" "Cache-Control: no-cache\r\n" "Content-Type: text/plain\r\n" "Connection: close\r\n"