From: Mladen Turk Date: Fri, 10 Sep 2004 14:48:20 +0000 (+0000) Subject: Fix compile time warnings (logging pointer and unused var). X-Git-Tag: 2.1.1~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e235eb876aea4cba4eaf268a6e9170f278a6924;p=thirdparty%2Fapache%2Fhttpd.git Fix compile time warnings (logging pointer and unused var). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105060 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_ajp.c b/modules/proxy/proxy_ajp.c index 2f7ee1841e9..7cc2675de7f 100644 --- a/modules/proxy/proxy_ajp.c +++ b/modules/proxy/proxy_ajp.c @@ -175,7 +175,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r, /* Try to send something */ ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, - "proxy: data to read (max %d at %08x)", bufsiz, buff); + "proxy: data to read (max %d at %d)", bufsiz, msg->pos); status = apr_brigade_flatten(input_brigade, buff, &bufsiz); if (status != APR_SUCCESS) { @@ -358,7 +358,6 @@ int ap_proxy_ajp_handler(request_rec *r, proxy_worker *worker, char server_portstr[32]; conn_rec *origin = NULL; proxy_conn_rec *backend = NULL; - int is_ssl = 0; const char *scheme = "AJP"; /* Note: Memory pool allocation.