]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix the message sent when SSL profiles are rehashed.
authorSadie Powell <sadie@witchery.services>
Thu, 18 Feb 2021 00:42:32 +0000 (00:42 +0000)
committerSadie Powell <sadie@witchery.services>
Thu, 18 Feb 2021 00:42:59 +0000 (00:42 +0000)
src/modules/extra/m_ssl_gnutls.cpp
src/modules/extra/m_ssl_mbedtls.cpp
src/modules/extra/m_ssl_openssl.cpp

index f79fa43deac877584572973537ededfd304df08c..de8edb4280a6f7d19457fdafb0bcdfef385ab627 100644 (file)
@@ -1381,7 +1381,7 @@ class ModuleSSLGnuTLS : public Module
                try
                {
                        ReadProfiles();
-                       ServerInstance->SNO->WriteToSnoMask('a', "TLS (SSL) module GnuTLS rehashed.");
+                       ServerInstance->SNO->WriteToSnoMask('a', "GnuTLS TLS (SSL) profiles have been reloaded.");
                }
                catch (ModuleException& ex)
                {
index ecf4e660abe7a44b32ad6338df27f0f105935b27..a787ba9932790251b2d92086b517d1ed38131f94 100644 (file)
@@ -951,7 +951,7 @@ class ModuleSSLmbedTLS : public Module
                try
                {
                        ReadProfiles();
-                       ServerInstance->SNO->WriteToSnoMask('a', "TLS (SSL) module mbedTLS rehashed.");
+                       ServerInstance->SNO->WriteToSnoMask('a', "mbedTLS TLS (SSL) profiles have been reloaded.");
                }
                catch (ModuleException& ex)
                {
index a9588d7b44cf6591d8f8976a9ffc5ea54f37eee7..b34eda6bfd6e935eb5953da86dbba2b4cbb3d789 100644 (file)
@@ -1075,7 +1075,7 @@ class ModuleSSLOpenSSL : public Module
                try
                {
                        ReadProfiles();
-                       ServerInstance->SNO->WriteToSnoMask('a', "TLS (SSL) module OpenSSL rehashed.");
+                       ServerInstance->SNO->WriteToSnoMask('a', "OpenSSL TLS (SSL) profiles have been reloaded.");
                }
                catch (ModuleException& ex)
                {