The ap_is_HTTP_INFO() macro checks for values in the 100...199 range,
and is a better readable replacement for the value 199.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102282
13f79535-47bb-0310-9956-
ffa450edef68
/* send body - but only if a body is expected */
if ((!r->header_only) && /* not HEAD request */
- (r->status > 199) && /* not any 1xx response */
+ (!ap_is_HTTP_INFO(r->status)) && /* not any 1xx response */
(r->status != HTTP_NO_CONTENT) && /* not 204 */
(r->status != HTTP_RESET_CONTENT) && /* not 205 */
(r->status != HTTP_NOT_MODIFIED)) { /* not 304 */