From abb23cb1af9c6f33c2a7198da2733cfc8ff0b597 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Sun, 21 Dec 2008 14:04:10 +0000 Subject: [PATCH] - Fix a wrong flag check. --- contrib/csup/lister.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/csup/lister.c b/contrib/csup/lister.c index 5597c8ecc26..27fae2d94b6 100644 --- a/contrib/csup/lister.c +++ b/contrib/csup/lister.c @@ -421,7 +421,7 @@ lister_dorcsfile(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, 0); if (path == NULL) { spath = coll_statuspath(coll);