From e8bf719fc6d6c325b3d057745f57f22438a4d17e Mon Sep 17 00:00:00 2001 From: eadler Date: Mon, 22 Oct 2012 02:59:44 +0000 Subject: Fix conditional expression: previously a bitvector would be operated on by a logical not. Approved by: cperciva MFC after: 3 days --- usr.bin/csup/lister.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/csup') diff --git a/usr.bin/csup/lister.c b/usr.bin/csup/lister.c index b10dbd3..104963a 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); -- cgit v1.1