From 1a7e329ada3d629236dec2086381f61f563f6ad2 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 7 Jul 1995 06:37:24 +0000 Subject: [PATCH] Change FILE-TIME->STRING to use a full year rather than just the last two digits. RFC 822 specifies just two digits, but this has been superseded by a later RFC. --- v7/src/runtime/os2prm.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/os2prm.scm b/v7/src/runtime/os2prm.scm index d75e08d79..8dca1e2ab 100644 --- a/v7/src/runtime/os2prm.scm +++ b/v7/src/runtime/os2prm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: os2prm.scm,v 1.17 1995/04/23 05:53:47 cph Exp $ +$Id: os2prm.scm,v 1.18 1995/07/07 06:37:24 cph Exp $ Copyright (c) 1994-95 Massachusetts Institute of Technology @@ -115,7 +115,7 @@ MIT in each case. |# " " (month/short-string (decoded-time/month dt)) " " - (number->string (modulo (decoded-time/year dt) 100)) + (number->string (decoded-time/year dt)) " " (d2 (decoded-time/hour dt)) ":" -- 2.25.1