
richter at apache
Aug 7, 2005, 9:57 AM
Post #1 of 1
(947 views)
Permalink
|
|
cvs commit: embperl eputil.c
|
|
richter 2005/08/07 09:57:28 Modified: . eputil.c Log: add missing format for time in windows Revision Changes Path 1.48 +1 -1 embperl/eputil.c Index: eputil.c =================================================================== RCS file: /home/cvs/embperl/eputil.c,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- eputil.c 7 Aug 2005 16:16:12 -0000 1.47 +++ eputil.c 7 Aug 2005 16:57:28 -0000 1.48 @@ -2032,7 +2032,7 @@ #ifdef WIN32 tms = gmtime(&when); - sprintf(sResult, + sprintf(sResult, "%s, %.2d%c%s%c%.2d %.2d:%.2d:%.2d GMT", ep_day_snames[tms->tm_wday], tms->tm_mday, sep, ep_month_snames[tms->tm_mon], sep, tms->tm_year + 1900, --------------------------------------------------------------------- To unsubscribe, e-mail: embperl-cvs-unsubscribe [at] perl For additional commands, e-mail: embperl-cvs-help [at] perl
|