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-Tag: APACHE_2_0_ALPHA_8~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1e7726a3064f5fb9861c49d98da826aa5032200;p=thirdparty%2Fapache%2Fhttpd.git 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 5d518791ecb..5c9553479d3 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