]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_lockserv.cpp
Remove current time parameter of the Timer constructor
[user/henk/code/inspircd.git] / src / modules / m_lockserv.cpp
index 56c7b9c945c7d149ef4cb91466ba2edd0b900ca3..65b9aa036349141cdcfe4164a37b1ae1f0a6b589 100644 (file)
@@ -44,7 +44,7 @@ class CommandLockserv : public Command
                }
 
                locked = true;
-               user->WriteNumeric(988, "%s :Closed for new connections", user->server.c_str());
+               user->WriteNumeric(988, "%s :Closed for new connections", user->server->GetName().c_str());
                ServerInstance->SNO->WriteGlobalSno('a', "Oper %s used LOCKSERV to temporarily disallow new connections", user->nick.c_str());
                return CMD_SUCCESS;
        }
@@ -69,7 +69,7 @@ class CommandUnlockserv : public Command
                }
 
                locked = false;
-               user->WriteNumeric(989, "%s :Open for new connections", user->server.c_str());
+               user->WriteNumeric(989, "%s :Open for new connections", user->server->GetName().c_str());
                ServerInstance->SNO->WriteGlobalSno('a', "Oper %s used UNLOCKSERV to allow new connections", user->nick.c_str());
                return CMD_SUCCESS;
        }