X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/719cadd2fba317b9d4f5fbadf9e9036fd07f3658..1cd2b12bd4e4d86f6cd099240795f3ebeb3852b3:/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 0cb215d0..1b47d571 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp @@ -24,7 +24,6 @@ #include "stg/settings.h" #include "stg/users.h" #include "stg/tariffs.h" -#include "stg/common.h" #include "stg/version.h" #include "stg/const.h" @@ -47,16 +46,16 @@ void GET_SERVER_INFO::CreateAnswer() utsn.machine + " " + utsn.nodename; - m_answer = GetOpenTag() + "" + - "" + + m_answer = std::string("" + + "" + "" + - "" + + "" + "" + - "" + - ""; + "" + + ""; for (size_t i = 0; i< DIR_NUM; i++) - m_answer += ""; + m_answer += ""; - m_answer += GetCloseTag(); + m_answer += ""; }