diff options
| author | 2007-07-01 12:06:15 +0000 | |
|---|---|---|
| committer | 2007-07-01 12:06:15 +0000 | |
| commit | 8199f4dd3e64450d464c0ac97b34d90c165df066 (patch) | |
| tree | 21c060d81d8ea6c76ba215a9b40845c65722d741 /src/cmd_ison.cpp | |
| parent | Split hostmask with XLines::IdentSplit then re-inject into check for proper d... (diff) | |
Optimizations and code tidyups. QA please check that svsnick and other forced nick changes still work right after this
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7416 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_ison.cpp')
| -rw-r--r-- | src/cmd_ison.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_ison.cpp b/src/cmd_ison.cpp index c76bf40e1..0cee160c7 100644 --- a/src/cmd_ison.cpp +++ b/src/cmd_ison.cpp @@ -51,7 +51,7 @@ CmdResult cmd_ison::Handle (const char** parameters, int pcnt, userrec *user) /* Its a space seperated list of nicks (RFC1459 says to support this) */ irc::spacesepstream list(parameters[i]); - std::string item = "*"; + std::string item("*"); while (((item = list.GetToken()) != "")) { u = ServerInstance->FindNick(item); |
