summaryrefslogtreecommitdiffstats
path: root/support/htdbm.c
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2004-08-11 16:25:30 +0200
committerJoe Orton <jorton@apache.org>2004-08-11 16:25:30 +0200
commitd2e2c4e584976c7c2e0911a3b37152aea2cd7c6c (patch)
treee3f496b275f51822c801cf40aa8734764fb4f189 /support/htdbm.c
parent* modules/ssl/ssl_engine_io.c (ssl_io_input_read): Fix potential (diff)
downloadapache2-d2e2c4e584976c7c2e0911a3b37152aea2cd7c6c.tar.xz
apache2-d2e2c4e584976c7c2e0911a3b37152aea2cd7c6c.zip
* 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@104548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/htdbm.c')
-rw-r--r--support/htdbm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htdbm.c b/support/htdbm.c
index 652d5d793f..cdb317e3f7 100644
--- a/support/htdbm.c
+++ b/support/htdbm.c
@@ -263,7 +263,7 @@ static apr_status_t htdbm_list(htdbm_t *htdbm)
rec[val.dsize] = '\0';
cmnt = strchr(rec, ':');
if (cmnt)
- fprintf(stderr, cmnt + 1);
+ fprintf(stderr, "%s", cmnt + 1);
fprintf(stderr, "\n");
rv = apr_dbm_nextkey(htdbm->dbm, &key);
if (rv != APR_SUCCESS)