summaryrefslogtreecommitdiff
path: root/news/nntpcache
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2000-02-27 21:38:12 +0000
committerdmcmahill <dmcmahill>2000-02-27 21:38:12 +0000
commit6465716ec5e771779454d76a20024fc084963b04 (patch)
tree88dc7173677f798ed3030960b9c4930866f6b0bc /news/nntpcache
parentfe3f5f2917a72ede92d12aab992e5580ebe1413b (diff)
downloadpkgsrc-6465716ec5e771779454d76a20024fc084963b04.tar.gz
remove out of date patch file. This patch is no longer required.
Diffstat (limited to 'news/nntpcache')
-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];