X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/719cadd2fba317b9d4f5fbadf9e9036fd07f3658..acdf6ab94fee26ebc4017bf32cf6171c7d9462e9:/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 += "";
}