Author: eadler Date: Thu Oct 25 01:19:02 2012 New Revision: 242019 URL: http://svn.freebsd.org/changeset/base/242019
Log: MFC r241835: Fix conditional expression: previously a bitvector would be operated on by a logical not. Approved by: cperciva (implicit) Modified: stable/9/usr.bin/csup/lister.c Directory Properties: stable/9/usr.bin/csup/ (props changed) Modified: stable/9/usr.bin/csup/lister.c ============================================================================== --- stable/9/usr.bin/csup/lister.c Thu Oct 25 00:50:14 2012 (r242018) +++ stable/9/usr.bin/csup/lister.c Thu Oct 25 01:19:02 2012 (r242019) @@ -530,7 +530,7 @@ lister_dorcsdead(struct lister *l, struc 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); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"