Commit 97c5be35 authored by Stefan Eissing's avatar Stefan Eissing
Browse files

On the trunk:

* mod_remoteip: added cast to fix clang compiler error



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1776734 13f79535-47bb-0310-9956-ffa450edef68
parent 94be9b95
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -969,7 +969,7 @@ static remoteip_parse_status_t remoteip_process_v2_header(conn_rec *c,
            /* not a supported command */
            ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO(03507)
                          "RemoteIPProxyProtocol: unsupported command %.2hx",
                          hdr->v2.ver_cmd);
                          (unsigned short)hdr->v2.ver_cmd);
            return HDR_ERROR;
    }