From wds1%coltrane@gte.com Mon Mar 17 18:52:15 1997
Received: from MIT.EDU (PACIFIC-CARRIER-ANNEX.MIT.EDU [18.69.0.28]) by rt-11.MIT.EDU (8.7.5/8.7.3) with SMTP id SAA03995 for <bugs@RT-11.MIT.EDU>; Mon, 17 Mar 1997 18:52:14 -0500
Received: from [132.197.8.9] by MIT.EDU with SMTP
id AA19227; Mon, 17 Mar 97 18:52:07 EST
Received: from coltrane.gte.com by ns.gte.com (8.7.5/)
Received: by coltrane.gte.com (AIX 4.1/UCB 5.64/4.03)
id AA23310; Mon, 17 Mar 1997 18:51:31 -0500
Message-Id: <9703172351.AA23310@coltrane.gte.com>
Date: Mon, 17 Mar 1997 18:51:31 -0500
From: DShambroom@gte.com
Reply-To: DShambroom@gte.com
To: krb5-bugs@MIT.EDU
Subject: Y2K problem in gssftp
X-Send-Pr-Version: 3.99
GTE Laboratories Incorporated
Machine: RS/6000 43P
if (tm->tm_year > yy%100)
return (1);
else if (tm->tm_year == yy%100) {
will fail in the year 2000.
if (tm->tm_year > yy-1900)
return (1);
else if (tm->tm_year == yy-1900) {
From: tytso@MIT.EDU
To: krb5-bugs@MIT.EDU, DShambroom@gte.com
Cc: gnats-admin@RT-11.MIT.EDU, krb5-prs@RT-11.MIT.EDU
Subject: Re: krb5-appl/399: Y2K problem in gssftp
Date: Thu, 1 May 1997 22:58:00 -0400
David,
Thanks for pointing out this Y2K bug in gssftp! It's been fixed in
our development sources and will appear in the KRB5 V1.1 release.
- Ted
State-Changed-From-To: open-closed
State-Changed-By: tytso
State-Changed-When: Thu May 1 23:31:12 1997
State-Changed-Why: Fixed in sources
Received: from MIT.EDU (PACIFIC-CARRIER-ANNEX.MIT.EDU [18.69.0.28]) by rt-11.MIT.EDU (8.7.5/8.7.3) with SMTP id SAA03995 for <bugs@RT-11.MIT.EDU>; Mon, 17 Mar 1997 18:52:14 -0500
Received: from [132.197.8.9] by MIT.EDU with SMTP
id AA19227; Mon, 17 Mar 97 18:52:07 EST
Received: from coltrane.gte.com by ns.gte.com (8.7.5/)
Received: by coltrane.gte.com (AIX 4.1/UCB 5.64/4.03)
id AA23310; Mon, 17 Mar 1997 18:51:31 -0500
Message-Id: <9703172351.AA23310@coltrane.gte.com>
Date: Mon, 17 Mar 1997 18:51:31 -0500
From: DShambroom@gte.com
Reply-To: DShambroom@gte.com
To: krb5-bugs@MIT.EDU
Subject: Y2K problem in gssftp
X-Send-Pr-Version: 3.99
Show quoted text
>Number: 399
>Category: krb5-appl
>Synopsis: code in krb5-1.0/src/appl/gssftp/ftp/cmds.c will fail in year 2000
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: krb5-unassigned
>State: closed
>Class: sw-bug
>Submitter-Id: unknown
>Arrival-Date: Mon Mar 17 18:53:01 EST 1997
>Last-Modified: Thu May 01 23:31:26 EDT 1997
>Originator: W. David Shambroom
>Organization:
Software Systems Laboratory>Category: krb5-appl
>Synopsis: code in krb5-1.0/src/appl/gssftp/ftp/cmds.c will fail in year 2000
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: krb5-unassigned
>State: closed
>Class: sw-bug
>Submitter-Id: unknown
>Arrival-Date: Mon Mar 17 18:53:01 EST 1997
>Last-Modified: Thu May 01 23:31:26 EDT 1997
>Originator: W. David Shambroom
>Organization:
GTE Laboratories Incorporated
Show quoted text
>Release: 1.0
>Environment:
System: AIX coltrane 1 4 006003004C00>Environment:
Machine: RS/6000 43P
Show quoted text
>Description:
In the source file krb5-1.0/src/appl/gssftp/ftp/cmds.c, lines 822-824:if (tm->tm_year > yy%100)
return (1);
else if (tm->tm_year == yy%100) {
will fail in the year 2000.
Show quoted text
>How-To-Repeat:
N/AShow quoted text
>Fix:
A correct version is:if (tm->tm_year > yy-1900)
return (1);
else if (tm->tm_year == yy-1900) {
Show quoted text
>Audit-Trail:
From: tytso@MIT.EDU
To: krb5-bugs@MIT.EDU, DShambroom@gte.com
Cc: gnats-admin@RT-11.MIT.EDU, krb5-prs@RT-11.MIT.EDU
Subject: Re: krb5-appl/399: Y2K problem in gssftp
Date: Thu, 1 May 1997 22:58:00 -0400
David,
Thanks for pointing out this Y2K bug in gssftp! It's been fixed in
our development sources and will appear in the KRB5 V1.1 release.
- Ted
State-Changed-From-To: open-closed
State-Changed-By: tytso
State-Changed-When: Thu May 1 23:31:12 1997
State-Changed-Why: Fixed in sources
Show quoted text
>Unformatted: