summaryrefslogtreecommitdiffstats
path: root/modules/ssl/ssl_util_ssl.c
diff options
context:
space:
mode:
authorStefan Sperling <stsp@apache.org>2015-05-05 16:35:48 +0200
committerStefan Sperling <stsp@apache.org>2015-05-05 16:35:48 +0200
commit2b3c064412eadf67abfbe74c70768f0ad8aee306 (patch)
tree161ad88f5580f8c63793f80ebf16fcfde23728ce /modules/ssl/ssl_util_ssl.c
parentmod_ssl namespacing: Move SSL_CTX_use_certificate_chain() into ssl_engine_init.c (diff)
downloadapache2-2b3c064412eadf67abfbe74c70768f0ad8aee306.tar.xz
apache2-2b3c064412eadf67abfbe74c70768f0ad8aee306.zip
mod_ssl namespacing: Rename SSL_SESSION_id2sz() to modssl_SSL_SESSION_id2sz().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1677835 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/ssl_util_ssl.c')
-rw-r--r--modules/ssl/ssl_util_ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ssl/ssl_util_ssl.c b/modules/ssl/ssl_util_ssl.c
index e2bf101ca8..1acda0d772 100644
--- a/modules/ssl/ssl_util_ssl.c
+++ b/modules/ssl/ssl_util_ssl.c
@@ -449,8 +449,8 @@ EC_GROUP *ssl_ec_GetParamFromFile(const char *file)
** _________________________________________________________________
*/
-char *SSL_SESSION_id2sz(unsigned char *id, int idlen,
- char *str, int strsize)
+char *modssl_SSL_SESSION_id2sz(unsigned char *id, int idlen,
+ char *str, int strsize)
{
if (idlen > SSL_MAX_SSL_SESSION_ID_LENGTH)
idlen = SSL_MAX_SSL_SESSION_ID_LENGTH;