From: Jeff Trawick Date: Mon, 6 Nov 2000 17:32:13 +0000 (+0000) Subject: Make the desired evaluation explicit to keep gcc -Wall happy. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5f83c1f816534b237cac92496e9cb39fc3f490f;p=apache Make the desired evaluation explicit to keep gcc -Wall happy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86844 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 5d518791ec..5c9553479d 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -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