diff options
| author | 2022-01-14 18:49:06 +0000 | |
|---|---|---|
| committer | 2022-01-14 18:49:06 +0000 | |
| commit | abeddc4f83f622b714b3aa5023aae0d14913d07f (patch) | |
| tree | c6ccaf443748db22e2e89ff7ac1a71fc35366bda /src/modules/extra | |
| parent | Always catch exceptions as a constant reference. (diff) | |
| parent | Fix 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.cpp | 2 |
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)); |
