From: Graham Leggett Date: Mon, 31 Aug 2009 17:11:27 +0000 (+0000) Subject: Add suggested parentheses around APR_STATUS_IS_ENOENT. X-Git-Tag: 2.3.3~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=383a108c07700e1f60efd2cd1489125815857b17;p=apache Add suggested parentheses around APR_STATUS_IS_ENOENT. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@809665 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index 9b8b1e4075..3334e3b60a 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -241,7 +241,7 @@ CACHE_DECLARE(apr_status_t) ap_cache_try_lock(cache_server_conf *conf, /* is an existing lock file too old? */ status = apr_stat(&finfo, lockname, APR_FINFO_MTIME | APR_FINFO_NLINK, r->pool); - if (!APR_STATUS_IS_ENOENT(status) && APR_SUCCESS != status) { + if (!(APR_STATUS_IS_ENOENT(status)) && APR_SUCCESS != status) { ap_log_error(APLOG_MARK, APLOG_ERR, APR_EEXIST, r->server, "Could not stat a cache lock file: %s", lockname);