diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-11 18:03:17 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-11 18:03:17 +0000 |
commit | e4839dc44353952dde32620035c07863b918eb15 (patch) | |
tree | 1c8a6f30c76c320b9aceb916f2c58645b1906b29 /src/commands/cmd_quit.cpp | |
parent | deb81c174517475845e28b6e24c40cdf3f8fb4f5 (diff) |
Move 2 static extensibles from user class to inspircd class for global access in an attempt to further fix windows build.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11838 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_quit.cpp')
-rw-r--r-- | src/commands/cmd_quit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_quit.cpp b/src/commands/cmd_quit.cpp index 5db7ada40..7bb84bd3b 100644 --- a/src/commands/cmd_quit.cpp +++ b/src/commands/cmd_quit.cpp @@ -51,7 +51,7 @@ CmdResult CommandQuit::Handle (const std::vector<std::string>& parameters, User else quitmsg = parameters.size() ? parameters[0] : "Client exited"; - std::string* operquit = User::OperQuit.get(user); + std::string* operquit = ServerInstance->OperQuit.get(user); if (operquit) { ServerInstance->Users->QuitUser(user, quitmsg, operquit->c_str()); |