From owner-svn-src-all@FreeBSD.ORG Mon Oct 22 02:59:45 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 407108F1; Mon, 22 Oct 2012 02:59:45 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 278708FC18; Mon, 22 Oct 2012 02:59:45 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9M2xjWF015794; Mon, 22 Oct 2012 02:59:45 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9M2xiwS015791; Mon, 22 Oct 2012 02:59:44 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210220259.q9M2xiwS015791@svn.freebsd.org> From: Eitan Adler Date: Mon, 22 Oct 2012 02:59:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241835 - head/usr.bin/csup X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Oct 2012 02:59:45 -0000 Author: eadler Date: Mon Oct 22 02:59:44 2012 New Revision: 241835 URL: http://svn.freebsd.org/changeset/base/241835 Log: Fix conditional expression: previously a bitvector would be operated on by a logical not. Approved by: cperciva MFC after: 3 days Modified: head/usr.bin/csup/lister.c Modified: head/usr.bin/csup/lister.c ============================================================================== --- head/usr.bin/csup/lister.c Mon Oct 22 02:29:56 2012 (r241834) +++ head/usr.bin/csup/lister.c Mon Oct 22 02:59:44 2012 (r241835) @@ -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);