svn commit: r242019 - stable/9/usr.bin/csup

Eitan Adler eadler at FreeBSD.org
Thu Oct 25 01:19:03 UTC 2012


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);


More information about the svn-src-stable mailing list