summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authormycroft <mycroft>2000-11-30 05:16:40 +0000
committermycroft <mycroft>2000-11-30 05:16:40 +0000
commit276fa08e262ad20d140f6cfafd4e9bc73732ea46 (patch)
tree32bd926e8306c817224623eff555e3e9c5db19d0 /misc
parenta0d71f05a1d98871c118ac22480c6332fa9086ac (diff)
downloadpkgsrc-276fa08e262ad20d140f6cfafd4e9bc73732ea46.tar.gz
I bet you thought y2k problems were gone by now. Well, you were wrong.
Diffstat (limited to 'misc')
-rw-r--r--misc/gnome-utils/patches/patch-ae13
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/gnome-utils/patches/patch-ae b/misc/gnome-utils/patches/patch-ae
new file mode 100644
index 00000000000..9cc4d0d44d4
--- /dev/null
+++ b/misc/gnome-utils/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2000/11/30 05:16:40 mycroft Exp $
+
+--- logview/log_repaint.c.orig Thu Apr 27 03:32:02 2000
++++ logview/log_repaint.c Thu Nov 30 05:09:19 2000
+@@ -480,7 +480,7 @@
+
+ tdm = &curlog->curmark->fulldate;
+ sprintf (status_text, "%02d/%02d/%02d",
+- tdm->tm_mday, tdm->tm_mon, tdm->tm_year);
++ tdm->tm_mday, tdm->tm_mon, tdm->tm_year + 1900);
+ gtk_label_get ( date_label, (char **)&buffer);
+ if (strcmp (status_text, buffer) != 0)
+ gtk_label_set_text (date_label, status_text);