Windows: set timezone as -3600.
This commit is contained in:
parent
818c67ad63
commit
ed9166c226
@ -271,15 +271,20 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
|
|||||||
cout << "Total minutes: " << (int)ret_val << endl;
|
cout << "Total minutes: " << (int)ret_val << endl;
|
||||||
if (ret_val <= 0) return "PARKING NOT ALLOWED";
|
if (ret_val <= 0) return "PARKING NOT ALLOWED";
|
||||||
|
|
||||||
#if !defined(_SVID_SOURCE) && !defined(_XOPEN_SOURCE)
|
#ifdef __linux__
|
||||||
|
#if !defined(_SVID_SOURCE) && !defined(_XOPEN_SOURCE)
|
||||||
// needed for timezone-correction
|
// needed for timezone-correction
|
||||||
#error "!defined(_SVID_SOURCE) && !defined(_XOPEN_SOURCE)"
|
#error "!defined(_SVID_SOURCE) && !defined(_XOPEN_SOURCE)"
|
||||||
#else
|
#else
|
||||||
// timezone correction: localtime() needs argument in UTC-timezone
|
// timezone correction: localtime() needs argument in UTC-timezone
|
||||||
// The global variable 'timezone' is set by tzset(), see
|
// The global variable 'timezone' is set by tzset(), see
|
||||||
// https://linux.die.net/man/3/tzset, so I change of the timezone will
|
// https://linux.die.net/man/3/tzset, so I change of the timezone will
|
||||||
// also change the value of the variable 'timezone'.
|
// also change the value of the variable 'timezone'.
|
||||||
valid_until_datetime_t += timezone;
|
valid_until_datetime_t += timezone;
|
||||||
|
#endif
|
||||||
|
#else // windows, only for testing
|
||||||
|
static const long timezone = -3600;
|
||||||
|
valid_until_datetime_t += timezone;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct tm valid_until_datetime;
|
struct tm valid_until_datetime;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user