summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/conf/links.conf.example4
-rw-r--r--src/modules/m_spanningtree/utils.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf/links.conf.example b/docs/conf/links.conf.example
index 3b25e86f4..7ced7170e 100644
--- a/docs/conf/links.conf.example
+++ b/docs/conf/links.conf.example
@@ -56,7 +56,7 @@
# failover (see above).
timeout="5m"
- # ssl: If defined, this states the TLS (SSL) profile that will be used
+ # sslprofile: If defined, this states the TLS (SSL) profile that will be used
# when making an outbound connection to the server. See the docs page for
# the TLS (SSL) module you are using for more details:
#
@@ -67,7 +67,7 @@
# You will need to load the ssl_openssl module for OpenSSL, ssl_gnutls
# for GnuTLS and ssl_mbedtls for mbedTLS. The server port that you
# connect to must be capable of accepting this type of connection.
- ssl="Servers"
+ sslprofile="Servers"
# fingerprint: If defined, this option will force servers to be
# authenticated using TLS (SSL) certificate fingerprints. See
diff --git a/src/modules/m_spanningtree/utils.cpp b/src/modules/m_spanningtree/utils.cpp
index cd5cb508d..daafa7efe 100644
--- a/src/modules/m_spanningtree/utils.cpp
+++ b/src/modules/m_spanningtree/utils.cpp
@@ -274,7 +274,7 @@ void SpanningTreeUtilities::ReadConfiguration()
L->Fingerprint = tag->getString("fingerprint");
L->HiddenFromStats = tag->getBool("statshidden");
L->Timeout = tag->getDuration("timeout", 30);
- L->Hook = tag->getString("ssl");
+ L->Hook = tag->getString("sslprofile", tag->getString("ssl"));
L->Bind = tag->getString("bind");
L->Hidden = tag->getBool("hidden");