diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-28 14:51:39 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-28 14:51:39 +0200 |
commit | cea7a7cffaa25c9138e6ed80e15fe5cd021dcb10 (patch) | |
tree | 118e59921f3e0189f20c5e733fbebb845fd1e6d7 | |
parent | 662364f8551b3db2a3cbc0000f2d3eec091d8e07 (diff) |
Do not attempt to detect non-culled users at destruction by looking for their uuid, leave it to Extensible
This does not take uuid/sid reuse into consideration and Extensible implements this detection already in a proper way
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/users.cpp b/src/users.cpp index aed969c7b..5f0f1a344 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -97,8 +97,6 @@ LocalUser::LocalUser(int myfd, irc::sockets::sockaddrs* client, irc::sockets::so User::~User() { - if (ServerInstance->FindUUID(uuid)) - ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "User destructor for %s called without cull", uuid.c_str()); } const std::string& User::MakeHost() |