]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix compile time warnings (logging pointer and unused var).
authorMladen Turk <mturk@apache.org>
Fri, 10 Sep 2004 14:48:20 +0000 (14:48 +0000)
committerMladen Turk <mturk@apache.org>
Fri, 10 Sep 2004 14:48:20 +0000 (14:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105060 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_ajp.c

index 2f7ee1841e9ca375c41fd30d873c3ea5c5180c74..7cc2675de7fe9677c7e258f8d3f825c27612bbd0 100644 (file)
@@ -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.