From 4c075939a17f851cb75cd75c9b35aa65105d00df Mon Sep 17 00:00:00 2001 From: Elena Mamontova Date: Wed, 18 Jan 2017 19:45:44 +0200 Subject: [PATCH] Ticket 37. The readTime() changed to str2x(), default value in the ReadString() changed to "0" for the changePolicyTimeout field in the RestoreTariff() function. --- projects/stargazer/plugins/store/files/file_store.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/projects/stargazer/plugins/store/files/file_store.cpp b/projects/stargazer/plugins/store/files/file_store.cpp index d5cfefab..098f59b4 100644 --- a/projects/stargazer/plugins/store/files/file_store.cpp +++ b/projects/stargazer/plugins/store/files/file_store.cpp @@ -1471,10 +1471,16 @@ if (conf.ReadString("ChangePolicy", &str, "allow") < 0) else td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str); -if (conf.ReadString("ChangePolicyTimeout", &str, "1970-01-01 00:00:00") < 0) +if (conf.ReadString("ChangePolicyTimeout", &str, "0") < 0) +{ td->tariffConf.changePolicyTimeout = 0; +} else - td->tariffConf.changePolicyTimeout = readTime(str); +{ + int64_t policyTime = 0; + if (str2x(str, policyTime) == 0) + td->tariffConf.changePolicyTimeout = (time_t)policyTime; +} return 0; } //----------------------------------------------------------------------------- -- 2.43.2