Changeset 7461 for trunk


Ignore:
Timestamp:
01/23/06 12:51:57 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7460 r7461  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
    21   2006/01/10 Daniela Dorner
    22 
    23      * datacenter/macros/*.C, datacenter/script:
    24        - updated and added documentation
    25        - improved logging
    26        - fixed small bugs
     21 2006/01/23 Thomas Bretz
     22
     23   * mbase/MTime.cc:
     24     - removed a sanity check in GetStringFmt. It work's quite nice
     25       in the DC but crashes on my Laptop (which is not so important)
     26
     27
     28
     29 2006/01/10 Daniela Dorner
     30
     31   * datacenter/macros/*.C, datacenter/script:
     32     - updated and added documentation
     33     - improved logging
     34     - fixed small bugs
    2735
    2836
  • trunk/MagicSoft/Mars/mbase/MTime.cc

    r7458 r7461  
    670670    GetTime(h, m, s, ms);
    671671
    672     if (y<1902 || y>2037)
    673         return "";
     672    // If date<1902 strftime crahses on my (tbretz) laptop
     673    // it doesn't crash in the DC.
     674    //    if (y<1902 || y>2037)
     675    //        return "";
    674676
    675677    struct tm time;
Note: See TracChangeset for help on using the changeset viewer.