This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

strptime() broken


A typo meant you got the wrong result one month per year.

Bart

Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/language/c/libc/time/current/ChangeLog,v
retrieving revision 1.18
diff -u -r1.18 ChangeLog
--- ChangeLog	18 Aug 2003 20:07:15 -0000	1.18
+++ ChangeLog	8 Aug 2004 22:38:10 -0000
@@ -1,3 +1,7 @@
+2004-08-08  Bart Veer  <bartv@ecoscentric.com>
+
+	* src/strptime.cxx: fix spelling
+
 2003-08-18  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* src/strptime.cxx: Added string.h to fix compile warnings.  
Index: src/strptime.cxx
===================================================================
RCS file: /cvs/ecos/ecos/packages/language/c/libc/time/current/src/strptime.cxx,v
retrieving revision 1.4
diff -u -r1.4 strptime.cxx
--- src/strptime.cxx	18 Aug 2003 20:07:15 -0000	1.4
+++ src/strptime.cxx	8 Aug 2004 22:38:26 -0000
@@ -55,7 +55,7 @@
 static const char *month[] = {
     "January",
     "February",
-    "Mars",
+    "March",
     "April",
     "May",
     "June",


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]