diff options
| author | 2018-04-10 10:33:46 -0600 | |
|---|---|---|
| committer | 2018-04-11 18:59:17 +0100 | |
| commit | e6db1df5a657ea0603e1ec0b1ea9b056264d470f (patch) | |
| tree | 4ba4300584a1068a52c91b90b10626c667ad8269 /include | |
| parent | Optimize some behaviour in the core (#1476). (diff) | |
Change ServerInfo::gecos to description
Diffstat (limited to 'include')
| -rw-r--r-- | include/protocol.h | 2 | ||||
| -rw-r--r-- | include/server.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/protocol.h b/include/protocol.h index 2e512f11a..7a2908a4c 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -46,7 +46,7 @@ class CoreExport ProtocolInterface public: std::string servername; std::string parentname; - std::string gecos; + std::string description; unsigned int usercount; unsigned int opercount; unsigned int latencyms; diff --git a/include/server.h b/include/server.h index e54a379bc..d73c9673a 100644 --- a/include/server.h +++ b/include/server.h @@ -53,7 +53,7 @@ class CoreExport Server : public classbase */ const std::string& GetName() const { return name; } - /** Returns the description (GECOS) of this server + /** Returns the description of this server * @return The description of this server */ const std::string& GetDesc() const { return description; } |
