From 5faa80c629ffd05cf80dd29e8a1834057805829c Mon Sep 17 00:00:00 2001
From: Elena Mamontova <helenh463@gmail.com>
Date: Thu, 19 Jan 2017 16:46:41 +0200
Subject: [PATCH] Ticket 37. The construction if-else removed and ReadString()
 changed to ReadTime() for the ChangedPolicyTimeout in the RestoreTariff().

---
 projects/stargazer/plugins/store/files/file_store.cpp | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/projects/stargazer/plugins/store/files/file_store.cpp b/projects/stargazer/plugins/store/files/file_store.cpp
index 098f59b4..6f316072 100644
--- a/projects/stargazer/plugins/store/files/file_store.cpp
+++ b/projects/stargazer/plugins/store/files/file_store.cpp
@@ -1471,16 +1471,7 @@ if (conf.ReadString("ChangePolicy", &str, "allow") < 0)
 else
     td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str);
 
-if (conf.ReadString("ChangePolicyTimeout", &str, "0") < 0)
-{
-    td->tariffConf.changePolicyTimeout = 0;
-}
-else
-{
-    int64_t policyTime = 0;
-    if (str2x(str, policyTime) == 0)
-        td->tariffConf.changePolicyTimeout = (time_t)policyTime;
-}
+conf.ReadTime("ChangePolicyTimeout", &td->tariffConf.changePolicyTimeout, 0);
 return 0;
 }
 //-----------------------------------------------------------------------------
-- 
2.44.2