diff options
| author | 2023-01-15 22:28:45 +0000 | |
|---|---|---|
| committer | 2023-01-15 22:28:45 +0000 | |
| commit | 769f9c0c340635cf401bdc92cb9a4c515ffeb0f3 (patch) | |
| tree | e4bfe0849a5f47acdc1fce4b685209696641e48a /src/modules/m_cloak.cpp | |
| parent | Fix cloaking users with a non-IP hostname when using hmac-sha256-ip. (diff) | |
| download | inspircd++-769f9c0c340635cf401bdc92cb9a4c515ffeb0f3.tar.gz inspircd++-769f9c0c340635cf401bdc92cb9a4c515ffeb0f3.tar.bz2 inspircd++-769f9c0c340635cf401bdc92cb9a4c515ffeb0f3.zip | |
Fix some issues reported by scan-build.
All of these are harmless and should never cause an issue in practise.
Diffstat (limited to 'src/modules/m_cloak.cpp')
| -rw-r--r-- | src/modules/m_cloak.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cloak.cpp b/src/modules/m_cloak.cpp index 69907498d..50bb95ec4 100644 --- a/src/modules/m_cloak.cpp +++ b/src/modules/m_cloak.cpp @@ -138,7 +138,7 @@ public: cloaks->push_back(cloak); ServerInstance->Logs.Debug(MODNAME, "Cloaked %s (%s/%s) as %s using the %s method.", - user->uuid.c_str(), user->GetIPString().c_str(), user->GetRealHost().c_str(), + user->uuid.c_str(), user->GetIPString().c_str(), user->GetRealHost().c_str(), cloak.c_str(), cloakmethod->GetName()); } ext.Set(user, cloaks); |
