]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Make it clear that <gnutls>, <mbedtls>, and <openssl> are deprecated.
authorSadie Powell <sadie@witchery.services>
Wed, 16 Sep 2020 21:32:22 +0000 (22:32 +0100)
committerSadie Powell <sadie@witchery.services>
Wed, 16 Sep 2020 21:32:22 +0000 (22:32 +0100)
src/modules/extra/m_ssl_gnutls.cpp
src/modules/extra/m_ssl_mbedtls.cpp
src/modules/extra/m_ssl_openssl.cpp

index 0846aaa2df9cae7a1b18c8795484c94d899381a7..f79fa43deac877584572973537ededfd304df08c 100644 (file)
@@ -1300,7 +1300,7 @@ class ModuleSSLGnuTLS : public Module
                        // No <sslprofile> tags found, create a profile named "gnutls" from settings in the <gnutls> block
                        const std::string defname = "gnutls";
                        ConfigTag* tag = ServerInstance->Config->ConfValue(defname);
-                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found; using settings from the <gnutls> tag");
+                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found; using settings from the deprecated <gnutls> tag");
 
                        try
                        {
index 83b9d05956c88100a7e1e068c21a97ef91ba3299..ecf4e660abe7a44b32ad6338df27f0f105935b27 100644 (file)
@@ -874,7 +874,7 @@ class ModuleSSLmbedTLS : public Module
                        // No <sslprofile> tags found, create a profile named "mbedtls" from settings in the <mbedtls> block
                        const std::string defname = "mbedtls";
                        ConfigTag* tag = ServerInstance->Config->ConfValue(defname);
-                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found; using settings from the <mbedtls> tag");
+                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found; using settings from the deprecated <mbedtls> tag");
 
                        try
                        {
index 0c6122b4daffe431f0a7e29d721a4295aa0c55d4..7880ebd56c86504d4f561a5ade3100933b476364 100644 (file)
@@ -986,7 +986,7 @@ class ModuleSSLOpenSSL : public Module
                        // Create a default profile named "openssl"
                        const std::string defname = "openssl";
                        ConfigTag* tag = ServerInstance->Config->ConfValue(defname);
-                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found, using settings from the <openssl> tag");
+                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found, using settings from the deprecated <openssl> tag");
 
                        try
                        {