From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15512 invoked from network); 2 Jul 1998 16:26:53 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 2 Jul 1998 16:26:53 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id MAA28147; Thu, 2 Jul 1998 12:17:58 -0400 (EDT) Resent-Date: Thu, 2 Jul 1998 12:17:58 -0400 (EDT) From: Zefram Message-Id: <199807021616.RAA20131@taos.demon.co.uk> Subject: Re: Zsh 2.6 and Y2K status To: schaefer@brasslantern.com (Bart Schaefer) Date: Thu, 2 Jul 1998 17:16:44 +0100 (BST) Cc: Sean.Chan@wmc.com.au, zsh-workers@math.gatech.edu In-Reply-To: <980702083707.ZM17926@candle.brasslantern.com> from "Bart Schaefer" at Jul 2, 98 08:37:07 am X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Resent-Message-ID: <"846s_1.0.ht6.rAxcr"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/4198 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Ahem. *** utils.c.old Thu Jul 2 17:14:24 1998 --- utils.c Thu Jul 2 17:14:39 1998 *************** *** 1370,1376 **** *buf++ = '0' + tm->tm_sec % 10; break; case 'y': ! *buf++ = '0' + tm->tm_year / 10; *buf++ = '0' + tm->tm_year % 10; break; #ifndef HAVE_STRFTIME --- 1370,1376 ---- *buf++ = '0' + tm->tm_sec % 10; break; case 'y': ! *buf++ = '0' + (tm->tm_year / 10) % 10; *buf++ = '0' + tm->tm_year % 10; break; #ifndef HAVE_STRFTIME