Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17951 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 2461 invoked by uid 1010); 13 Aug 2005 10:46:59 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 2443 invoked from network); 13 Aug 2005 10:46:59 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Aug 2005 10:46:59 -0000 X-Host-Fingerprint: 212.55.154.23 relay3.ptmail.sapo.pt Linux 2.4/2.6 Received: from ([212.55.154.23:49262] helo=sapo.pt) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 6F/BF-33075-1AFCDF24 for ; Sat, 13 Aug 2005 06:46:58 -0400 Received: (qmail 28468 invoked from network); 13 Aug 2005 10:46:54 -0000 Received: from unknown (HELO sapo.pt) (10.134.35.155) by relay3 with SMTP; 13 Aug 2005 10:46:54 -0000 Received: (qmail 23235 invoked from network); 13 Aug 2005 10:46:53 -0000 X-AntiVirus: PTMail-AV 0.3-0.86.2 Received: from unknown (HELO pc07653) (nunoplopes@sapo.pt@[81.193.152.226]) (envelope-sender ) by mta5 (qmail-ldap-1.03) with SMTP for ; 13 Aug 2005 10:46:53 -0000 Message-ID: <00ac01c59ff4$508a88a0$0100a8c0@pc07653> To: "PHPdev" Date: Sat, 13 Aug 2005 11:46:51 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_00A9_01C59FFC.B20C6960" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2670 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 Subject: little typo From: nlopess@php.net ("Nuno Lopes") ------=_NextPart_000_00A9_01C59FFC.B20C6960 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit Hi, HEAD is currently broken because Wez forgot to change the datetime.h file. Attached is a patch to fix it. Nuno ------=_NextPart_000_00A9_01C59FFC.B20C6960 Content-Type: text/plain; format=flowed; name="php_ext_std.txt"; reply-type=original Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="php_ext_std.txt" Index: datetime.h=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /repository/php-src/ext/standard/datetime.h,v=0A= retrieving revision 1.23=0A= diff -u -r1.23 datetime.h=0A= --- datetime.h 3 Aug 2005 14:07:58 -0000 1.23=0A= +++ datetime.h 13 Aug 2005 10:44:43 -0000=0A= @@ -31,7 +31,7 @@=0A= PHP_FUNCTION(strptime);=0A= #endif =0A= =0A= -PHPAPI int php_idate(char format, int timestamp, int gm);=0A= +PHPAPI int php_idate(char format, time_t timestamp, int gm);=0A= PHPAPI char *php_std_date(time_t t TSRMLS_DC);=0A= =0A= #endif /* DATETIME_H */=0A= ------=_NextPart_000_00A9_01C59FFC.B20C6960--