From 089dcf8ceccafacd5e7b054a6f9b23aa1a926a98 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Sat, 7 May 2011 11:34:23 +0000 Subject: [PATCH] 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 --- server/protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.47.2