diff options
| author | 2013-12-14 22:55:10 -0800 | |
|---|---|---|
| committer | 2013-12-14 22:55:10 -0800 | |
| commit | 59df199aaedf8018979c444eaa8cca59ff001877 (patch) | |
| tree | e7d873a3250f50b2ecb7c4bc47d7fcf7a9cefefd /src/modules/m_check.cpp | |
| parent | m_cap Convert capability names in CAP REQ to lowercase before processing them (diff) | |
| parent | Make various self contained methods static. (diff) | |
Merge pull request #689 from SaberUK/master+cxxify
Clean up various things.
Diffstat (limited to 'src/modules/m_check.cpp')
| -rw-r--r-- | src/modules/m_check.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 5e154feea..84e147f7b 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -180,8 +180,8 @@ class CommandCheck : public Command if (loctarg) { - user->SendText(checkstr + " clientaddr " + irc::sockets::satouser(loctarg->client_sa)); - user->SendText(checkstr + " serveraddr " + irc::sockets::satouser(loctarg->server_sa)); + user->SendText(checkstr + " clientaddr " + loctarg->client_sa.str()); + user->SendText(checkstr + " serveraddr " + loctarg->server_sa.str()); std::string classname = loctarg->GetClass()->name; if (!classname.empty()) |
