summaryrefslogtreecommitdiff
path: root/x11-fm
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2000-09-02 16:02:31 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2000-09-02 16:02:31 +0000
commit8fdc9874909b202c8da77f3a259d3ab0e1c3d572 (patch)
tree6f8dbeb9ccdcaf98f08b4b5bc7dee410528ff3be /x11-fm
parentThe extension of the FP distfile changed from .Z to .z. (diff)
Add a patch for Y2K.
Submitted by: Jim Dutton <jimd@dutton3.it.siu.edu>
Notes
Notes: svn path=/head/; revision=32212
Diffstat (limited to 'x11-fm')
-rw-r--r--x11-fm/filerunner/files/patch-ac17
1 files changed, 17 insertions, 0 deletions
diff --git a/x11-fm/filerunner/files/patch-ac b/x11-fm/filerunner/files/patch-ac
new file mode 100644
index 000000000000..e3992272dccb
--- /dev/null
+++ b/x11-fm/filerunner/files/patch-ac
@@ -0,0 +1,17 @@
+--- ext.c.orig Wed Jun 10 05:55:32 1998
++++ ext.c Sat Sep 2 23:56:45 2000
+@@ -123,11 +123,12 @@
+ HANDLE2(*p != '\0', "Error converting arg to int");
+
+ time_s = localtime(&t);
++ time_s->tm_year = 1900 + time_s->tm_year;
+ if (dateformat)
+- sprintf(interp->result, "%02d%02d%02d %02d:%02d:%02d", time_s->tm_mday, time_s->tm_mon+1,
++ sprintf(interp->result, "%02d%02d%04d %02d:%02d:%02d", time_s->tm_mday, time_s->tm_mon+1,
+ time_s->tm_year, time_s->tm_hour, time_s->tm_min, time_s->tm_sec);
+ else
+- sprintf(interp->result, "%02d%02d%02d %02d:%02d:%02d", time_s->tm_year, time_s->tm_mon+1,
++ sprintf(interp->result, "%04d%02d%02d %02d:%02d:%02d", time_s->tm_year, time_s->tm_mon+1,
+ time_s->tm_mday, time_s->tm_hour, time_s->tm_min, time_s->tm_sec);
+ return TCL_OK;
+ }