X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/107a6a8d0b9eae3c4375a685e49dcf90bea69335..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp b/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp index 299b520c..75be7537 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp @@ -21,7 +21,9 @@ #include "parser_server_info.h" -#include "stg/common.h" +#include "stg/settings.h" +#include "stg/users.h" +#include "stg/tariffs.h" #include "stg/version.h" #include "stg/const.h" @@ -44,16 +46,16 @@ void GET_SERVER_INFO::CreateAnswer() utsn.machine + " " + utsn.nodename; - answer = GetOpenTag() + "" + - "" + - "" + - "" + - "" + - "" + - ""; + m_answer = std::string("" + + "" + + "" + + "" + + "" + + "" + + ""; for (size_t i = 0; i< DIR_NUM; i++) - answer += ""; + m_answer += ""; - answer += GetCloseTag(); + m_answer += ""; }