From: Luca Toscano Date: Mon, 1 Aug 2016 11:01:04 +0000 (+0000) Subject: Fixed a typo introduced by my previous commit, really sorry about it X-Git-Tag: 2.5.0-alpha~1348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5c40d8adcaa19ba0c43eb853433291d2ec8e0b4;p=thirdparty%2Fapache%2Fhttpd.git Fixed a typo introduced by my previous commit, really sorry about it git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1754734 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_fcgi.c b/modules/proxy/mod_proxy_fcgi.c index 1bdd200733f..53455322b13 100644 --- a/modules/proxy/mod_proxy_fcgi.c +++ b/modules/proxy/mod_proxy_fcgi.c @@ -305,7 +305,7 @@ static apr_status_t send_environment(proxy_conn_rec *conn, request_rec *r, for (i = 0; i < envarr->nelts; ++i) { ap_log_rerror(APLOG_MARK, APLOG_TRACE8, 0, r, APLOGNO(01062) "sending env var '%s' value '%s'", - elts[i].key, elts[i].valq); + elts[i].key, elts[i].val); } }