diff options
author | 2003-06-01 15:53:34 +0000 | |
---|---|---|
committer | 2003-06-01 15:53:34 +0000 | |
commit | 07c34dd654985c2ebbbd10c1e12ff7b754f27fe5 (patch) | |
tree | 4247b0dcbd860fe8218254f1a24b68b3878d3380 /usr.sbin/httpd/src | |
parent | Revert ep0 removal, deraadt@ objects. (diff) | |
download | wireguard-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.c | 2 |
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; |