aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@FreeBSD.org>2008-12-21 14:04:10 +0000
committerUlf Lilleengen <lulf@FreeBSD.org>2008-12-21 14:04:10 +0000
commitabb23cb1af9c6f33c2a7198da2733cfc8ff0b597 (patch)
treee13e7be9189a9cc80951b0b593878ac5fd01c453
parenta25883eaeafae2c3b2b06a079595887faf7789c0 (diff)
downloadsrc-abb23cb1af9c6f33c2a7198da2733cfc8ff0b597.tar.gz
src-abb23cb1af9c6f33c2a7198da2733cfc8ff0b597.zip
- Fix a wrong flag check.
Notes
Notes: svn path=/projects/csup_cvsmode/; revision=186373
-rw-r--r--contrib/csup/lister.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/csup/lister.c b/contrib/csup/lister.c
index 5597c8ecc266..27fae2d94b69 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);