summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--news/nntpcache/patches/patch-y2k14
1 files changed, 0 insertions, 14 deletions
diff --git a/news/nntpcache/patches/patch-y2k b/news/nntpcache/patches/patch-y2k
deleted file mode 100644
index d9c12332b1d..00000000000
--- a/news/nntpcache/patches/patch-y2k
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-y2k,v 1.1 2000/01/26 20:16:18 mjl Exp $
-
---- src/newgroups.c.orig Wed Jan 26 20:55:05 2000
-+++ src/newgroups.c Wed Jan 26 20:56:21 2000
-@@ -36,6 +36,9 @@
- if ((t[i]=c2i(d+2*i))==-1)
- goto bad;
- memset(&tm, 0, sizeof tm);
-+ if(t[0] < 50)
-+ tm.tm_year = t[0] + 100;
-+ else
- tm.tm_year = t[0];
- tm.tm_mon = t[1]-1;
- tm.tm_mday = t[2];