summaryrefslogtreecommitdiff
path: root/src/connection.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-18 15:50:06 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-18 15:50:06 +0000
commit0e29649531977f356c8d87477e8c2c8cfe070481 (patch)
tree7c5520bfc70ed2772f3efa420f1613bfe0044986 /src/connection.cpp
parentdf3c056469d5c42ded803ef9a75b7d4e1daaac23 (diff)
Fixes to ircd_connector::SetServerDesc() (was setting the server name!)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@646 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/connection.cpp')
-rw-r--r--src/connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp
index dc654e655..145301229 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -280,7 +280,7 @@ void ircd_connector::SetServerName(std::string serv)
void ircd_connector::SetDescription(std::string desc)
{
- this->servername = desc;
+ this->description = desc;
}