git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Handle short string correctly in blowfish encription.
[stg.git]
/
stglibs
/
srvconf.lib
/
parsers
/
get_tariff.cpp
diff --git
a/stglibs/srvconf.lib/parsers/get_tariff.cpp
b/stglibs/srvconf.lib/parsers/get_tariff.cpp
index 0ffaabb6c02c17119a69ecf38c3b885fbf762524..c0736b7b4053f917e1384ce67197f1b378a8f4ec 100644
(file)
--- a/
stglibs/srvconf.lib/parsers/get_tariff.cpp
+++ b/
stglibs/srvconf.lib/parsers/get_tariff.cpp
@@
-55,11
+55,12
@@
void AddAOSParser(PROPERTY_PARSERS & parsers, const std::string & name, A & arra
bool GetTimeSpan(const char ** attr, DIRPRICE_DATA & value, const std::string & attrName)
{
bool GetTimeSpan(const char ** attr, DIRPRICE_DATA & value, const std::string & attrName)
{
-int hb = 0;
-int mb = 0;
-int he = 0;
-int me = 0;
if (CheckValue(attr, attrName))
if (CheckValue(attr, attrName))
+ {
+ int hb = 0;
+ int mb = 0;
+ int he = 0;
+ int me = 0;
if (ParseTariffTimeStr(attr[1], hb, mb, he, me) == 0)
{
value.hDay = hb;
if (ParseTariffTimeStr(attr[1], hb, mb, he, me) == 0)
{
value.hDay = hb;
@@
-68,6
+69,7
@@
if (CheckValue(attr, attrName))
value.mNight = me;
return true;
}
value.mNight = me;
return true;
}
+ }
return false;
}
return false;
}