Setting Timezone Seems Broken
Posted: Sat Jun 18, 2022 5:31 am
I am trying to migrate from 2.8.6/7 to 2.9.5 on a MOD5282. Setting the Timezone doesn't work anymore. This code
has always worked, but in 2.9.5 it refuses to set the timezone to EST. Here is the output:
I output the "Timezone ..." twice to show that nothing changed by calling localtime() inside the stream.
The revision notes show a change in time_t to a 64-bit value, but nothing about Timezones.
Did I miss something or is this a bug?
Ed
Code: Select all
putenv("TZ=EST5EDT,M3.2.0/2,M11.1.0/2");
Now_t = time(NULL);
localtime_r(&Now_t,&Now_tm);
localtime(&Now_t);
cout << "Timezone: " << getenv("TZ") << endl;
cout << "Time: "<< put_time(localtime(&Now_t), "%c %Z") << endl;
cout << "Timezone: " << getenv("TZ") << endl;
Code: Select all
Timezone: EST5EDT,M3.2.0/2,M11.1.0/2
Time: Sat Jun 18 12:16:07 2022 GMT
Timezone: EST5EDT,M3.2.0/2,M11.1.0/2
The revision notes show a change in time_t to a 64-bit value, but nothing about Timezones.
Did I miss something or is this a bug?
Ed