From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 248C9138334 for ; Thu, 30 May 2019 10:23:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CC9AE0878; Thu, 30 May 2019 10:23:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C63AEE0878 for ; Thu, 30 May 2019 10:23:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3AA2434530E for ; Thu, 30 May 2019 10:23:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACAE655B for ; Thu, 30 May 2019 10:23:16 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1559211632.44b1c34cd0d02e03ca549a163a41a9d6fc74e580.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qlop.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 44b1c34cd0d02e03ca549a163a41a9d6fc74e580 X-VCS-Branch: master Date: Thu, 30 May 2019 10:23:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 494bc8bb-f0bf-44f8-a234-9093df7441c0 X-Archives-Hash: 96df14e5881af834cdf0fca49f02ba92 commit: 44b1c34cd0d02e03ca549a163a41a9d6fc74e580 Author: Fabian Groffen gentoo org> AuthorDate: Thu May 30 10:20:32 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu May 30 10:20:32 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=44b1c34c qlop: fix -U and -t interaction -t, -a or -r checks for -m, -u or -s, make it also check for -U Signed-off-by: Fabian Groffen gentoo.org> qlop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qlop.c b/qlop.c index ab5dc10..a3b4d53 100644 --- a/qlop.c +++ b/qlop.c @@ -1045,7 +1045,7 @@ int qlop_main(int argc, char **argv) /* set default for -t, -a or -r */ if ((m.do_average || m.do_time || m.do_running) && - !(m.do_merge || m.do_unmerge || m.do_sync)) + !(m.do_merge || m.do_unmerge || m.do_autoclean || m.do_sync)) { m.do_merge = 1; m.do_unmerge = 1;