You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2011/05/07 13:34:23 UTC

svn commit: r1100511 - /httpd/httpd/trunk/server/protocol.c

Author: covener
Date: Sat May  7 11:34:23 2011
New Revision: 1100511

URL: http://svn.apache.org/viewvc?rev=1100511&view=rev
Log:
use APR_STATUS_IS_TIMEUP() instead of direct comparison with APR_TIMEUP.

Modified:
    httpd/httpd/trunk/server/protocol.c

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=1100511&r1=1100510&r2=1100511&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Sat May  7 11:34:23 2011
@@ -615,7 +615,7 @@ static int read_request_line(request_rec
                 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_cor
                          &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 {