From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on sa.local.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.1 From: Aleksei Nikiforov To: devel@lists.altlinux.org Date: Fri, 13 Dec 2019 11:21:59 +0300 Message-Id: <20191213082159.102307-1-darktemplar@altlinux.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20191212225553.e467fee203adc96d3a6060e0@altlinux.org> References: <20191212225553.e467fee203adc96d3a6060e0@altlinux.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Aleksei Nikiforov Subject: [devel] [PATCH for apt v3 09/21] Rework identical conditions X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: ALT Linux Team development discussions List-Id: ALT Linux Team development discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2019 08:22:09 -0000 Archived-At: List-Archive: List-Post: Found via cppcheck: [apt/methods/rsync.cc:371] -> [apt/methods/rsync.cc:373]: (style) The if condition is the same as the previous if condition --- apt/cmdline/apt-shell.cc | 6 ++++-- apt/methods/rsync.cc | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/apt/cmdline/apt-shell.cc b/apt/cmdline/apt-shell.cc index 36fa223..26811c4 100644 --- a/apt/cmdline/apt-shell.cc +++ b/apt/cmdline/apt-shell.cc @@ -3044,8 +3044,9 @@ bool DoList(CommandLine &CmdL) PkgSection = Pkg.Section(); StrLen = strlen(Str); string status = "available"; - if (Pkg->CurrentVer != 0) status = "installed"; - if (Pkg->CurrentVer != 0) + if (Pkg->CurrentVer != 0) + { + status = "installed"; for (pkgCache::DepIterator D = Pkg.RevDependsList(); not D.end(); ++D) { pkgCache::PkgIterator P = D.ParentPkg(); @@ -3054,6 +3055,7 @@ bool DoList(CommandLine &CmdL) continue; status = "locked"; } + } if (Pkg->CurrentVer != 0 && Cache[Pkg].Upgradable() == true) status = "upgradable"; if (Cache[Pkg].NewInstall()) status = "be-installed"; if (Cache[Pkg].Delete()) status = "be-removed"; diff --git a/apt/methods/rsync.cc b/apt/methods/rsync.cc index bae22eb..64c9231 100644 --- a/apt/methods/rsync.cc +++ b/apt/methods/rsync.cc @@ -369,9 +369,10 @@ bool RsyncMethod::RsyncConnExec::Get(pkgAcqMethod *Owner, FetchResult &FRes, con return false; } if ( RsyncMethod::Debug ) + { cerr << "RSYNC: Created pipe [" << p[0] << ',' << p[1] << ']' << endl; - if ( RsyncMethod::Debug ) cerr << "RSYNC: Starting: " << string(argv) << endl; + } switch ( ChildPid = fork() ) { case -1: -- 2.24.1