Skip to content

Commit b910560

Browse files
author
Justin Erenkrantz
committed
Fix bad logging level.
(Why does mod_ssl insist on having its own logging levels? Bad, bad, bad.) PR: 9842 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93464 13f79535-47bb-0310-9956-ffa450edef68
1 parent be335bc commit b910560

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/ssl/ssl_engine_mutex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ int ssl_mutex_init(server_rec *s, apr_pool_t *p)
7171

7272
if (apr_lock_create(&mc->pMutex, APR_MUTEX, APR_LOCKALL, APR_LOCK_DEFAULT,
7373
mc->szMutexFile, p) != APR_SUCCESS) {
74-
ssl_log(s, SSL_LOG_CRIT|SSL_ADD_ERRNO,
74+
ssl_log(s, SSL_LOG_ERROR,
7575
"Cannot create SSLMutex file `%s'",
7676
mc->szMutexFile);
7777
return FALSE;

0 commit comments

Comments
 (0)