X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/719cadd2fba317b9d4f5fbadf9e9036fd07f3658..3c830ad0bc5107acead026251cadd71d08a28308:/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp?ds=sidebyside
diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp b/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp
index 0cb215d0..75be7537 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,7 +46,7 @@ void GET_SERVER_INFO::CreateAnswer()
utsn.machine + " " +
utsn.nodename;
- m_answer = GetOpenTag() + "" +
+ m_answer = std::string("" +
"" +
"" +
"" +
@@ -58,5 +57,5 @@ void GET_SERVER_INFO::CreateAnswer()
for (size_t i = 0; i< DIR_NUM; i++)
m_answer += "";
- m_answer += GetCloseTag();
+ m_answer += "";
}