commit | f78d8967d791064c1148fe4efc07dee28e79d0db | [log] [tgz] |
---|---|---|
author | Cyril Bonté <cyril.bonte@free.fr> | Fri Jan 22 19:40:28 2016 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jan 22 19:52:31 2016 +0100 |
tree | 65a081bc32f4eafe4fba6995d1c8822bc72037c8 | |
parent | 3b90f0a267a086fd590102e8cdcc7a258b31c636 [diff] |
BUG/MEDIUM: sample: http_date() doesn't provide the right day of the week Gregor Kovač reported that http_date() did not return the right day of the week. For example "Sat, 22 Jan 2016 17:43:38 GMT" instead of "Fri, 22 Jan 2016 17:43:38 GMT". Indeed, gmtime() returns a 'struct tm' result, where tm_wday begins on Sunday, whereas the code assumed it began on Monday. This patch must be backported to haproxy 1.5 and 1.6.