Merge branch 'pe/date'
authorJunio C Hamano <junkio@cox.net>
Sun, 18 Jun 2006 00:49:28 +0000 (17:49 -0700)
committerJunio C Hamano <junkio@cox.net>
Sun, 18 Jun 2006 00:49:28 +0000 (17:49 -0700)
* pe/date:
  date.c: improve guess between timezone offset and year.

date.c

diff --git a/date.c b/date.c
index 365dc3b..66be23a 100644 (file)
--- a/date.c
+++ b/date.c
@@ -369,7 +369,7 @@ static int match_digit(const char *date, struct tm *tm, int *offset, int *tm_gmt
 
        /* Four-digit year or a timezone? */
        if (n == 4) {
-               if (num <= 1200 && *offset == -1) {
+               if (num <= 1400 && *offset == -1) {
                        unsigned int minutes = num % 100;
                        unsigned int hours = num / 100;
                        *offset = hours*60 + minutes;