summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/src
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2003-06-01 15:53:34 +0000
committerderaadt <deraadt@openbsd.org>2003-06-01 15:53:34 +0000
commit07c34dd654985c2ebbbd10c1e12ff7b754f27fe5 (patch)
tree4247b0dcbd860fe8218254f1a24b68b3878d3380 /usr.sbin/httpd/src
parentRevert ep0 removal, deraadt@ objects. (diff)
downloadwireguard-openbsd-07c34dd654985c2ebbbd10c1e12ff7b754f27fe5.tar.xz
wireguard-openbsd-07c34dd654985c2ebbbd10c1e12ff7b754f27fe5.zip
various format string cleanups; tedu ok
Diffstat (limited to 'usr.sbin/httpd/src')
-rw-r--r--usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c b/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
index 13b1e513478..bd5da6e5a5f 100644
--- a/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
+++ b/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
@@ -524,7 +524,7 @@ static char *ssl_ext_mp_new_connection(request_rec *r, BUFF *fb, char *peer)
#endif
errmsg = ap_psprintf(r->pool, "SSL proxy connect failed (%s): peer %s: %s",
cpVHostID, peer, ERR_reason_error_string(ERR_get_error()));
- ssl_log(r->server, SSL_LOG_ERROR, errmsg);
+ ssl_log(r->server, SSL_LOG_ERROR, "%s", errmsg);
SSL_free(ssl);
ap_ctx_set(fb->ctx, "ssl", NULL);
return errmsg;