aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-04-08 11:29:16 +0100
committerGravatar Sadie Powell2021-04-08 11:45:15 +0100
commit3c426be2a16c099625574968b2fe4f9518802689 (patch)
treecb8e02fd416a6fc90fae46d3c6a3ad862a93375b /src/modules.cpp
parentRemove the remainders of genssl. (diff)
Refer to encryption as TLS instead of SSL in all messages.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index dcfb513a7..8315a7cce 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -410,7 +410,7 @@ void ModuleManager::DoSafeUnload(Module* mod)
for (user_hash::const_iterator u = users.begin(); u != users.end(); )
{
User* user = u->second;
- // The module may quit the user (e.g. TLS (SSL) mod unloading) and that will remove it from the container
+ // The module may quit the user (e.g. TLS mod unloading) and that will remove it from the container
++u;
mod->OnCleanup(ExtensionItem::EXT_USER, user);
user->UnhookExtensions(items);