diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2000-09-02 16:02:31 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2000-09-02 16:02:31 +0000 |
commit | 8fdc9874909b202c8da77f3a259d3ab0e1c3d572 (patch) | |
tree | 6f8dbeb9ccdcaf98f08b4b5bc7dee410528ff3be /x11-fm/filerunner | |
parent | da00e12a401ad46ea0ebb252e65b4bd3dcf2b40c (diff) | |
download | ports-8fdc9874909b202c8da77f3a259d3ab0e1c3d572.tar.gz ports-8fdc9874909b202c8da77f3a259d3ab0e1c3d572.zip |
Notes
Diffstat (limited to 'x11-fm/filerunner')
-rw-r--r-- | x11-fm/filerunner/files/patch-ac | 17 |
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; + } |