]> granicus.if.org Git - apache/commitdiff
replace recent AJP direct comparisons to APR_TIMEUP with APR_STATUS_IS_TIMEUP.
authorEric Covener <covener@apache.org>
Sat, 7 May 2011 11:41:59 +0000 (11:41 +0000)
committerEric Covener <covener@apache.org>
Sat, 7 May 2011 11:41:59 +0000 (11:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1100513 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/ajp_link.c
modules/proxy/mod_proxy_ajp.c

index 7b9959998232308f723257874f743ccfe9594a8d..f8e32ac3d69875fe44375c4be8da6acd22fb1c24 100644 (file)
@@ -84,7 +84,7 @@ apr_status_t ajp_ilink_receive(apr_socket_t *sock, ajp_msg_t *msg)
     if (status != APR_SUCCESS) {
         ap_log_error(APLOG_MARK, APLOG_ERR, status, NULL,
                      "ajp_ilink_receive() can't receive header");
-        return (status == APR_TIMEUP ? APR_TIMEUP : AJP_ENO_HEADER);
+        return (APR_STATUS_IS_TIMEUP(status) ? APR_TIMEUP : AJP_ENO_HEADER);
     }
 
     status = ajp_msg_check_header(msg, &blen);
index 93dfefc83f0d2ed97d8732a1a7a254b713e4f638..7b44fcbe34b170f0c9e807fea967c43991b67853 100644 (file)
@@ -341,7 +341,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r,
          * we assume it is a request that cause a back-end timeout,
          * but doesn't affect the whole worker.
          */
-        if (status == APR_TIMEUP && conn->worker->s->ping_timeout_set) {
+        if (APR_STATUS_IS_TIMEUP(status) && conn->worker->s->ping_timeout_set) {
             return HTTP_GATEWAY_TIME_OUT;
         }