diff options
author | Joe Orton <jorton@apache.org> | 2004-08-11 16:25:30 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2004-08-11 16:25:30 +0200 |
commit | d2e2c4e584976c7c2e0911a3b37152aea2cd7c6c (patch) | |
tree | e3f496b275f51822c801cf40aa8734764fb4f189 /support/htdbm.c | |
parent | * modules/ssl/ssl_engine_io.c (ssl_io_input_read): Fix potential (diff) | |
download | apache2-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.c | 2 |
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) |