From 4edb64e645e4a9b48796a6df7918d2040fc242c2 Mon Sep 17 00:00:00 2001 From: eadler Date: Thu, 25 Oct 2012 01:19:03 +0000 Subject: [PATCH] MFC r241835: Fix conditional expression: previously a bitvector would be operated on by a logical not. Approved by: cperciva (implicit) git-svn-id: svn://svn.freebsd.org/base/stable/8@242020 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- usr.bin/csup/lister.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/csup/lister.c b/usr.bin/csup/lister.c index b10dbd3a1..104963afa 100644 --- a/usr.bin/csup/lister.c +++ b/usr.bin/csup/lister.c @@ -530,7 +530,7 @@ lister_dorcsdead(struct lister *l, struct coll *coll, struct statusrec *sr) return (0); config = l->config; wr = l->wr; - if (!coll->co_options & CO_TRUSTSTATUSFILE) { + if (!(coll->co_options & CO_TRUSTSTATUSFILE)) { path = cvspath(coll->co_prefix, sr->sr_file, 1); if (path == NULL) { spath = coll_statuspath(coll); -- 2.45.0