diff options
author | mycroft <mycroft> | 2000-11-30 05:16:40 +0000 |
---|---|---|
committer | mycroft <mycroft> | 2000-11-30 05:16:40 +0000 |
commit | 276fa08e262ad20d140f6cfafd4e9bc73732ea46 (patch) | |
tree | 32bd926e8306c817224623eff555e3e9c5db19d0 /misc/gnome-utils/patches | |
parent | a0d71f05a1d98871c118ac22480c6332fa9086ac (diff) | |
download | pkgsrc-276fa08e262ad20d140f6cfafd4e9bc73732ea46.tar.gz |
I bet you thought y2k problems were gone by now. Well, you were wrong.
Diffstat (limited to 'misc/gnome-utils/patches')
-rw-r--r-- | misc/gnome-utils/patches/patch-ae | 13 |
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); |