git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Ticket. The line for the change-policy-timeout adding to the vector
[stg.git]
/
stglibs
/
srvconf.lib
/
parsers
/
get_admin.cpp
diff --git
a/stglibs/srvconf.lib/parsers/get_admin.cpp
b/stglibs/srvconf.lib/parsers/get_admin.cpp
index 8f775d0638c903b2a4b7687e1c67b2e96f5d8785..29e35ba7e4f3c891ac9f455cde70ea3dd8385842 100644
(file)
--- a/
stglibs/srvconf.lib/parsers/get_admin.cpp
+++ b/
stglibs/srvconf.lib/parsers/get_admin.cpp
@@
-45,9
+45,10
@@
return true;
} // namespace STG
} // namespace STG
-GET_ADMIN::PARSER::PARSER(CALLBACK f, void * d)
+GET_ADMIN::PARSER::PARSER(CALLBACK f, void * d
, const std::string & e
)
: callback(f),
data(d),
: callback(f),
data(d),
+ encoding(e),
depth(0),
parsingAnswer(false)
{
depth(0),
parsingAnswer(false)
{
@@
-104,7
+105,7
@@
if (strcasecmp(el, "admin") == 0)
{
parsingAnswer = true;
for (const char ** pos = attr; *pos != NULL; pos = pos + 2)
{
parsingAnswer = true;
for (const char ** pos = attr; *pos != NULL; pos = pos + 2)
- if (!TryParse(propertyParsers, ToLower(*pos), pos, *pos))
+ if (!TryParse(propertyParsers, ToLower(*pos), pos,
encoding,
*pos))
{
error = std::string("Invalid parameter '") + *pos + "'.";
break;
{
error = std::string("Invalid parameter '") + *pos + "'.";
break;