diff options
author | christos <christos@pkgsrc.org> | 2000-01-01 20:08:27 +0000 |
---|---|---|
committer | christos <christos@pkgsrc.org> | 2000-01-01 20:08:27 +0000 |
commit | 3fa22d90f93580023f2b2d309a8152d631785bf0 (patch) | |
tree | d24153dd0a7fbcd5f30d89e775f5f402112c652b /mail/mush/patches | |
parent | cd7c68d4e6290083b477e59225955d4606ed17be (diff) | |
download | pkgsrc-3fa22d90f93580023f2b2d309a8152d631785bf0.tar.gz |
Y2K botch
Diffstat (limited to 'mail/mush/patches')
-rw-r--r-- | mail/mush/patches/patch-al | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/mush/patches/patch-al b/mail/mush/patches/patch-al new file mode 100644 index 00000000000..c3e271ff95d --- /dev/null +++ b/mail/mush/patches/patch-al @@ -0,0 +1,13 @@ +$NetBSD: patch-al,v 1.1 2000/01/01 20:08:27 christos Exp $ + +--- dates.c.orig Sat Jan 1 15:06:01 2000 ++++ dates.c Sat Jan 1 15:06:07 2000 +@@ -101,7 +101,7 @@ + { + long year, julian; + +- if (tym->tm_year < 100) ++ if (tym->tm_year < 1000) + year = tym->tm_year + 1900; + if (year < 69) + year += 100; |