X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ccb2e3ee51729c893c6eb8042cb0aff560c193b8..262f652e681a7b2f1686726a1f543ff5fad804da:/stglibs/srvconf.lib/parsers/property.cpp diff --git a/stglibs/srvconf.lib/parsers/property.cpp b/stglibs/srvconf.lib/parsers/property.cpp index 7edae520..6e9fc72c 100644 --- a/stglibs/srvconf.lib/parsers/property.cpp +++ b/stglibs/srvconf.lib/parsers/property.cpp @@ -46,10 +46,10 @@ if (value == 0 && ip != "0.0.0.0") return true; } -bool STG::TryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr, const std::string & attrName) +bool STG::TryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr, const std::string & fromEncoding, const std::string & attrName) { PROPERTY_PARSERS::iterator it(parsers.find(name)); if (it != parsers.end()) - return it->second->Parse(attr, attrName); + return it->second->Parse(attr, attrName, fromEncoding); return true; // Assume that non-existing params are ok. }