|
|
|
--- fileutils-4.1/lib/posixtm.c.foo Tue Feb 26 16:10:26 2002
+++ fileutils-4.1/lib/posixtm.c Tue Feb 26 16:12:09 2002
@@ -84,6 +84,8 @@
See POSIX.2 section 4.63.3. */
if (digit_pair[0] <= 68)
t.tm_year += 100;
+ if (t.tm_year < 70)
+ return 1;
break;
case 2:
@@ -93,6 +95,8 @@
if (t.tm_year < 1900)
return 1;
t.tm_year -= 1900;
+ if (t.tm_year < 70)
+ return 1;
break;
case 0:
| Results 1 - 1 |