diff options
| author | 2006-08-09 11:33:10 +0000 | |
|---|---|---|
| committer | 2006-08-09 11:33:10 +0000 | |
| commit | 09afa5085614e0224a296abd082fce205003c3fe (patch) | |
| tree | 444d54deea5f10e3045e0a8a016f9623499f513e /src/cmd_who.cpp | |
| parent | Get rid of Server::GetUsers(chanrec) - a throwback to before chanrec could do... (diff) | |
| download | inspircd++-09afa5085614e0224a296abd082fce205003c3fe.tar.gz inspircd++-09afa5085614e0224a296abd082fce205003c3fe.tar.bz2 inspircd++-09afa5085614e0224a296abd082fce205003c3fe.zip | |
ServerConfig extern moved into class InspIRCd
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4808 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_who.cpp')
| -rw-r--r-- | src/cmd_who.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp index bb4a37234..0a6637242 100644 --- a/src/cmd_who.cpp +++ b/src/cmd_who.cpp @@ -23,7 +23,7 @@ #include "wildcard.h" #include "commands/cmd_who.h" -extern ServerConfig* Config; +extern InspIRCd* ServerInstance; extern user_hash clientlist; extern chan_hash chanlist; extern std::vector<userrec*> all_opers; @@ -228,7 +228,7 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user) } } /* Send the results out */ - if ((whoresults.size() < (size_t)Config->MaxWhoResults) && (!opt_unlimit)) + if ((whoresults.size() < (size_t)ServerInstance->Config->MaxWhoResults) && (!opt_unlimit)) { for (std::vector<std::string>::const_iterator n = whoresults.begin(); n != whoresults.end(); n++) user->WriteServ(*n); |
