Changeset 7461 for trunk/MagicSoft/Mars
- Timestamp:
- 01/23/06 12:51:57 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7460 r7461 19 19 -*-*- END OF LINE -*-*- 20 20 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 27 35 28 36 -
trunk/MagicSoft/Mars/mbase/MTime.cc
r7458 r7461 670 670 GetTime(h, m, s, ms); 671 671 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 ""; 674 676 675 677 struct tm time;
Note:
See TracChangeset
for help on using the changeset viewer.