aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_operlog.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2012-10-21 15:10:44 +0200
committerGravatar attilamolnar2012-10-21 15:10:44 +0200
commit569a742b9420b62a538c27fbd38a2bb8db6b9ca6 (patch)
tree662b4f7ce703540fee6e5896200622c2ee22b4a4 /src/modules/m_operlog.cpp
parentFix KILL accepting SIDs, get rid of potentially unsafe snprintf and strlcpy (diff)
Make better use of User::GetFullRealHost()
Diffstat (limited to 'src/modules/m_operlog.cpp')
-rw-r--r--src/modules/m_operlog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_operlog.cpp b/src/modules/m_operlog.cpp
index d8006d9d5..1913ceeee 100644
--- a/src/modules/m_operlog.cpp
+++ b/src/modules/m_operlog.cpp
@@ -58,7 +58,7 @@ class ModuleOperLog : public Module
std::string line;
if (!parameters.empty())
line = irc::stringjoiner(" ", parameters, 0, parameters.size() - 1).GetJoined();
- ServerInstance->Logs->Log("m_operlog",DEFAULT,"OPERLOG: [%s!%s@%s] %s %s",user->nick.c_str(), user->ident.c_str(), user->host.c_str(), command.c_str(), line.c_str());
+ ServerInstance->Logs->Log("m_operlog",DEFAULT,"OPERLOG: [%s] %s %s", user->GetFullRealHost().c_str(), command.c_str(), line.c_str());
}
}