Update the latest bugfixes.

PR:		docs/9562
Submitted by:	Stephen J. Roznowski <sjr@home.net>
This commit is contained in:
Bill Fumerola 1999-01-28 19:41:21 +00:00
parent 12186e026d
commit 72ed729583
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=4143

View file

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY date "$Date: 1999-01-15 17:16:35 $">
<!ENTITY date "$Date: 1999-01-28 19:41:21 $">
<!ENTITY title 'Year 2000 Compatibility (aka "Millennium Bug")'>
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
]>
<!-- $Id: y2kbug.sgml,v 1.17 1999-01-15 17:16:35 wollman Exp $ -->
<!-- $Id: y2kbug.sgml,v 1.18 1999-01-28 19:41:21 billf Exp $ -->
<html>
&header;
@ -132,6 +132,53 @@
use this obsolete format are no longer widespread, this is not expected
to have a significant impact.
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9500">misc/9500</a></dt>
<dd>The `edithook' script in the CVSROOT directory uses a raw tm_year and
will therefore display 01/01/100 for 2000-JAN-01.
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9501">bin/9501</a></dt>
<dd>Several cvs contrib files are not Y2K compliant.
The log.pl and sccs2rcs.csh scripts prepend `19' to the year
resulting in a display of 19100 for 2000. The log_accum.pl
script uses a two digit year in one place and in another
place assumes that the tm_year is year within century rather
than years since 1900.
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9502">bin/9502</a></dt>
<dd>The groff number register `yr' is assigned from a (struct tm).tm_year
and therefore represents the number of years since 1900, not the
year within the century (see definition in troff/input.cc).
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9503">bin/9503</a></dt>
<dd>PicoBSD's simple_httpd uses a raw tm_year and will therefore
display 01/01/100 for 2000-JAN-01.
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9505">bin/9505</a></dt>
<dd>Adduser uses a raw tm_year and will therefore display 100/01/01 for
2000-JAN-01.
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9506">bin/9506</a></dt>
<dd>Cron uses a raw tm_year and will therefore display 100 for 2000.
</dd>
<dt><a
href="http://www.freebsd.org/cgi/query-pr.cgi?pr=9507">bin/9507</a></dt>
<dd>tcpslice(8) uses a raw tm_year and will therefore display
100y01m01d... for 2000-JAN-01. For compatibility, use a two-digit
year until 2000.
</dd>
</dl>