aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-14 18:49:06 +0000
committerGravatar Sadie Powell2022-01-14 18:49:06 +0000
commitabeddc4f83f622b714b3aa5023aae0d14913d07f (patch)
treec6ccaf443748db22e2e89ff7ac1a71fc35366bda /src/modules/extra
parentAlways catch exceptions as a constant reference. (diff)
parentFix accessing the /stats/general and /stats/users sub-routes. (diff)
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules/extra')
-rw-r--r--src/modules/extra/m_ssl_openssl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_ssl_openssl.cpp b/src/modules/extra/m_ssl_openssl.cpp
index 953e3dc51..35dc0d4f6 100644
--- a/src/modules/extra/m_ssl_openssl.cpp
+++ b/src/modules/extra/m_ssl_openssl.cpp
@@ -612,7 +612,7 @@ class OpenSSLIOHook final
X509_free(cert);
}
- static void GetDNString(const X509_NAME* x509name, std::string& out)
+ static void GetDNString(X509_NAME* x509name, std::string& out)
{
char buf[512];
X509_NAME_oneline(x509name, buf, sizeof(buf));