From: Eric Covener Date: Sat, 7 May 2011 11:34:23 +0000 (+0000) Subject: use APR_STATUS_IS_TIMEUP() instead of direct comparison with APR_TIMEUP. X-Git-Tag: 2.3.12~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=089dcf8ceccafacd5e7b054a6f9b23aa1a926a98;p=thirdparty%2Fapache%2Fhttpd.git use APR_STATUS_IS_TIMEUP() instead of direct comparison with APR_TIMEUP. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1100511 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 359f848f394..cc256eb8840 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -615,7 +615,7 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) r->proto_num = HTTP_VERSION(1,0); r->protocol = apr_pstrdup(r->pool, "HTTP/1.0"); } - else if (rv == APR_TIMEUP) { + else if (APR_STATUS_IS_TIMEUP(rv)) { r->status = HTTP_REQUEST_TIME_OUT; } else if (rv == APR_EINVAL) { @@ -710,7 +710,7 @@ AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r, apr_bucket_brigade *bb &len, r, 0, bb); if (rv != APR_SUCCESS) { - if (rv == APR_TIMEUP) { + if (APR_STATUS_IS_TIMEUP(rv)) { r->status = HTTP_REQUEST_TIME_OUT; } else {