From owner-svn-src-stable@FreeBSD.ORG Thu Oct 25 01:19:03 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F58B44E; Thu, 25 Oct 2012 01:19:03 +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 775AB8FC14; Thu, 25 Oct 2012 01:19:03 +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 q9P1J3Tf039105; Thu, 25 Oct 2012 01:19:03 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9P1J35o039103; Thu, 25 Oct 2012 01:19:03 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210250119.q9P1J35o039103@svn.freebsd.org> From: Eitan Adler Date: Thu, 25 Oct 2012 01:19:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r242020 - stable/8/usr.bin/csup X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2012 01:19:03 -0000 Author: eadler Date: Thu Oct 25 01:19:03 2012 New Revision: 242020 URL: http://svn.freebsd.org/changeset/base/242020 Log: MFC r241835: Fix conditional expression: previously a bitvector would be operated on by a logical not. Approved by: cperciva (implicit) Modified: stable/8/usr.bin/csup/lister.c Directory Properties: stable/8/usr.bin/csup/ (props changed) Modified: stable/8/usr.bin/csup/lister.c ============================================================================== --- stable/8/usr.bin/csup/lister.c Thu Oct 25 01:19:02 2012 (r242019) +++ stable/8/usr.bin/csup/lister.c Thu Oct 25 01:19:03 2012 (r242020) @@ -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);