From: Graham Leggett Date: Wed, 15 May 2013 18:40:14 +0000 (+0000) Subject: core: Use the proper macro for HTTP/1.1. X-Git-Tag: 2.5.0-alpha~5451 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=715ac06c81722c8e9d589c802e9a7a0f90d6fd07;p=apache core: Use the proper macro for HTTP/1.1. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1482996 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 9d63c44d6a..e2f4d250cb 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1830,7 +1830,7 @@ AP_DECLARE(void) ap_send_interim_response(request_rec *r, int send_headers) char *status_line = NULL; request_rec *rr; - if (r->proto_num < 1001) { + if (r->proto_num < HTTP_VERSION(1,1)) { /* don't send interim response to HTTP/1.0 Client */ return; }