diff options
| author | 2023-01-11 00:45:04 +0000 | |
|---|---|---|
| committer | 2023-01-11 00:56:15 +0000 | |
| commit | c3e42d4e5db872e8ef408263da74375ff1ff7f82 (patch) | |
| tree | 11cd74fa4230b60fa8ba3d4c9e72f18be9c3d12c /src/usermanager.cpp | |
| parent | Fix calling various static functions through a type instance. (diff) | |
Make some functions that don't use `this` static.
Diffstat (limited to 'src/usermanager.cpp')
| -rw-r--r-- | src/usermanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usermanager.cpp b/src/usermanager.cpp index eeaa5ab44..53b6a0bef 100644 --- a/src/usermanager.cpp +++ b/src/usermanager.cpp @@ -219,7 +219,7 @@ void UserManager::AddUser(int socket, ListenSocket* via, const irc::sockets::soc } if (ServerInstance->Config->RawLog) - ServerInstance->Logs.NotifyRawIO(New, MSG_NOTICE); + Log::Manager::NotifyRawIO(New, MSG_NOTICE); FOREACH_MOD(OnChangeRemoteAddress, (New)); if (!New->quitting) |
