author | Danijel TaĊĦov <dt@korn.shell.la> | 2009-11-02 21:10:04 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-11-07 14:29:54 (UTC) |
commit | e34a3b5adc00255f8acb7d674e5fdadef2ac80f7 (patch) (unidiff) | |
tree | 801fc9c229bfbb84f4d49ac8c1ec6d423a7d3ef0 | |
parent | 9735835c0e9f2c4a0caf5a431fc455d5855472aa (diff) | |
download | cgit-e34a3b5adc00255f8acb7d674e5fdadef2ac80f7.zip cgit-e34a3b5adc00255f8acb7d674e5fdadef2ac80f7.tar.gz cgit-e34a3b5adc00255f8acb7d674e5fdadef2ac80f7.tar.bz2 |
Nov is the correct abbreviation
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 07d5dd4..4049a2b 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -20,7 +20,7 @@ static char *http_date(time_t t) | |||
20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
21 | static char month[][4] = | 21 | static char month[][4] = |
22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 23 | "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; |
24 | struct tm *tm = gmtime(&t); | 24 | struct tm *tm = gmtime(&t); |
25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], | 25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, | 26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |