Commit 51947a4c authored by Mladen Turk's avatar Mladen Turk
Browse files

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
parent 03c5b90e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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.