On Fri, Mar 08, 2002 at 04:41:15PM +0000, Michael Stevens wrote:
> This is a bug report for perl from [EMAIL PROTECTED],
> generated with the help of perlbug 1.26 running under perl 5.00503.
>
>
> -----------------------------------------------------------------
> [Please enter your report here]
>
> michaels@host:~> perl -MTime::Local -e 'timegm(0,0,0, 01, 01, 1901)'
> Can't handle date (0, 0, 0, 1, 1, 1) at -e line 1
>
> This seems contrary to the documentation which suggests that this is
> a perfectly valid date that will be handled as 1901.
It so happens that the 2^31 seconds before the UNIX epcoh falls on
Fri Dec 13 20:45:52 UTC 1901.
$ date -ju 190112132045.52
Fri Dec 13 20:45:52 UTC 1901
$ date -ju 190112132045.51
date: nonexistent time
$ date -ju 190112132045.52 +%s
-2147483648
$ dc
2
31^
p
2147483648
mktime(3) will choke on dates before Fri Dec 13 20:45:52 UTC 1901.
--
Crist J. Clark | [EMAIL PROTECTED]
| [EMAIL PROTECTED]
http://people.freebsd.org/~cjc/ | [EMAIL PROTECTED]
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message