Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7460)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7461)
@@ -19,10 +19,18 @@
                                                  -*-*- END OF LINE -*-*-
 
-  2006/01/10 Daniela Dorner
-
-     * datacenter/macros/*.C, datacenter/script: 
-       - updated and added documentation
-       - improved logging
-       - fixed small bugs
+ 2006/01/23 Thomas Bretz
+
+   * mbase/MTime.cc:
+     - removed a sanity check in GetStringFmt. It work's quite nice
+       in the DC but crashes on my Laptop (which is not so important)
+
+
+
+ 2006/01/10 Daniela Dorner
+
+   * datacenter/macros/*.C, datacenter/script: 
+     - updated and added documentation
+     - improved logging
+     - fixed small bugs
 
 
Index: trunk/MagicSoft/Mars/mbase/MTime.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MTime.cc	(revision 7460)
+++ trunk/MagicSoft/Mars/mbase/MTime.cc	(revision 7461)
@@ -670,6 +670,8 @@
     GetTime(h, m, s, ms);
 
-    if (y<1902 || y>2037)
-        return "";
+    // If date<1902 strftime crahses on my (tbretz) laptop
+    // it doesn't crash in the DC.
+    //    if (y<1902 || y>2037)
+    //        return "";
 
     struct tm time;
