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 4E62F1382C5 for ; Sat, 1 May 2021 08:40:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F6FDE0CB6; Sat, 1 May 2021 08:40:07 +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 658C6E0CB6 for ; Sat, 1 May 2021 08:40:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D900E340C44 for ; Sat, 1 May 2021 08:40:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1434B729 for ; Sat, 1 May 2021 08:40:04 +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: <1619858285.2ec2e13a5bbf0b36ec632d9a1306786953c4d66f.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qwhich.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 2ec2e13a5bbf0b36ec632d9a1306786953c4d66f X-VCS-Branch: master Date: Sat, 1 May 2021 08:40:04 +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: c51982f6-dfcd-4a2a-a61f-b57228de7a03 X-Archives-Hash: 4d62c56f8af33d61fa62f39a9911fc72 commit: 2ec2e13a5bbf0b36ec632d9a1306786953c4d66f Author: Marien Zwart gmail com> AuthorDate: Sat May 1 08:38:05 2021 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat May 1 08:38:05 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=2ec2e13a qwhich: fix locations for revisioned ebuilds in the tree and vdb Signed-off-by: Fabian Groffen gentoo.org> qwhich.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qwhich.c b/qwhich.c index 05ea064..24a9ff0 100644 --- a/qwhich.c +++ b/qwhich.c @@ -201,12 +201,12 @@ int qwhich_main(int argc, char **argv) m.print_repo ? "::" : "/", BOLD, tmcw->atom->CATEGORY, DKBLUE, tmcw->atom->PN, - BLUE, tmcw->atom->P, + BLUE, tmcw->atom->PF, DKGREEN, NORM); } else if (t->cachetype == CACHE_VDB && !m.print_path) { printf("%s%s/%s%s%s.ebuild%s\n", DKBLUE, tmcw->path, - BLUE, tmcw->atom->P, + BLUE, tmcw->atom->PF, DKGREEN, NORM); } else { printf("%s%s%s\n", DKBLUE, tmcw->path, NORM);