]> granicus.if.org Git - apache/commitdiff
Make the desired evaluation explicit to keep gcc -Wall happy.
authorJeff Trawick <trawick@apache.org>
Mon, 6 Nov 2000 17:32:13 +0000 (17:32 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 6 Nov 2000 17:32:13 +0000 (17:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86844 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index 5d518791ecbcc8c5876bbf81ce6fa0901500e5f0..5c9553479d371b5cfd028e75d1d8c068b35e0f28 100644 (file)
@@ -3414,7 +3414,8 @@ static apr_status_t core_output_filter(ap_filter_t *f, ap_bucket_brigade *b)
         /* Completed iterating over the brigades, now determine if we want to
          * buffer the brigade or send the brigade out on the network
          */
-        if (!fd && (!more) && (nbytes < MIN_SIZE_TO_WRITE) && !AP_BUCKET_IS_FLUSH(e) || (AP_BUCKET_IS_EOS(e) && c->keepalive)) {
+        if ((!fd && (!more) && (nbytes < MIN_SIZE_TO_WRITE) && !AP_BUCKET_IS_FLUSH(e))
+            || (AP_BUCKET_IS_EOS(e) && c->keepalive)) {
             
             /* NEVER save an EOS in here.  If we are saving a brigade with an
              * EOS bucket, then we are doing keepalive connections, and we want