vote up 1 vote down star

My XP system with service pack 2 seems to have transitioned to normal non-daylight time BUT the C++ time routines have not. The Date and Time Properties tool tells me it is now 5:26AM CST BUT localtime() and strftime() think it is 6:26CDT. I have relinked the app and restarted the system since the daylight switch to no avail. If I unclick the 'Automatically adjust clock for daylight saving changes' check box in the Date and Time Properties Time Zone tab, the c++ routines return the CST values. I admittedly do have an old 2002 XP and Visual Studio.

flag

67% accept rate
hopefully my updated answer helps w/regard to the CRT. – Doug T. Nov 3 at 16:59
Not receiving any hints on this problem, I wrote a set of replacement routines for such things as localtime and mktime that convert between time_t - filetime - systemtime and then operate on the systemtime values. I found that the routines operating on system time work properly on my system. – Mike D Nov 10 at 12:54

1 Answer

vote up 1 vote down

Probably the actual answer

Ah you have a much older version of Win XP. I suspect you do not have a version of Windows XP that was updated to the latest DST dates (they changed in 2007) or somehow its not functioning correctly. I would look into this hotfix.

Here's a blog post about the changes for the CRT

link|flag
Huh? I did and that's the problem! tm_isdst is returned as one even though it is NOT DST. – Mike D Nov 3 at 13:58
oh! lol. that's interesting. – Doug T. Nov 3 at 14:00
@Doug: GetTimeZoneInformation returns the proper bias of 360 minutes for my time zone regardless of the setting of the 'Automatically adjust clock for daylight saving changes' check box in the Date and Time Properties Time Zone tab. – Mike D Nov 3 at 14:04
@Doug: I donwloaded and tried to install the update and got the msg "Update cannot be installed as a newer or same timezone update has already been installed on the system" – Mike D Nov 3 at 14:27
@Doug: Could this be a run time library problem? How could I get a copy of Localtim.c? – Mike D Nov 3 at 15:28
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.