From d25086b376b610eb74fe51a0eb7a50d3e4c02746 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 11 Aug 2004 14:25:30 +0000 Subject: [PATCH] * modules/ssl/ssl_engine_kernel.c (ssl_callback_SSLVerify_CRL), * server/log.c (ap_log_pid), * server/mpm/prefork/prefork.c (accept_mutex_on, accept_mutex_off), * support/htdbm.c (htdbm_list): Fix some non-literal format strings (warnings from gcc -Wformat-security). PR: 30585 Submitted by: Ulf Harnhammar (SITIC), Joe Orton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@104548 13f79535-47bb-0310-9956-ffa450edef68 --- ssl_engine_kernel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl_engine_kernel.c b/ssl_engine_kernel.c index 6022ef92626..a71d829e663 100644 --- a/ssl_engine_kernel.c +++ b/ssl_engine_kernel.c @@ -1401,7 +1401,7 @@ int ssl_callback_SSLVerify_CRL(int ok, X509_STORE_CTX *ctx, conn_rec *c) BIO_free(bio); - ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, buff); + ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, "%s", buff); } /* -- 2.47.2