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 A6B72138334 for ; Sun, 29 Dec 2019 10:04:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7DD0E0BE9; Sun, 29 Dec 2019 10:04:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C7CC2E0BE9 for ; Sun, 29 Dec 2019 10:04:19 +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 4D4AB34DCA7 for ; Sun, 29 Dec 2019 10:04:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7B253D for ; Sun, 29 Dec 2019 10:04: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: <1577613839.f46111eb2e10cfd8317f728e0638b947ac47ab62.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: /, tests/qmanifest/ X-VCS-Repository: proj/portage-utils X-VCS-Files: q.c tests/qmanifest/manifest04.good tests/qmanifest/manifest05.good X-VCS-Directories: / tests/qmanifest/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: f46111eb2e10cfd8317f728e0638b947ac47ab62 X-VCS-Branch: master Date: Sun, 29 Dec 2019 10:04: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: 9dbace7a-b3a0-4757-b345-411ab38bae56 X-Archives-Hash: cb2e524f481ab3c6dc9d2541023749a4 commit: f46111eb2e10cfd8317f728e0638b947ac47ab62 Author: Fabian Groffen gentoo org> AuthorDate: Sun Dec 29 10:03:59 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Dec 29 10:03:59 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=f46111eb tests: fix after last commit Signed-off-by: Fabian Groffen gentoo.org> q.c | 2 +- tests/qmanifest/manifest04.good | 2 +- tests/qmanifest/manifest05.good | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/q.c b/q.c index 6d7eced..a6a9a0b 100644 --- a/q.c +++ b/q.c @@ -62,7 +62,7 @@ APPLET lookup_applet(const char *applet) /* this is possibly an alias like "belongs" * NOTE: we continue where the previous loop left, e.g. on the first * alias (desc == NULL) */ - for ( ; applets[i].name != NULL; i++) { + for (/*i*/; applets[i].name != NULL; i++) { if (strcmp(applets[i].name, applet) == 0) { unsigned int j; diff --git a/tests/qmanifest/manifest04.good b/tests/qmanifest/manifest04.good index 4831674..613d7a9 100644 --- a/tests/qmanifest/manifest04.good +++ b/tests/qmanifest/manifest04.good @@ -1 +1 @@ -manifest: cannot change directory to not_a_tree: No such file or directory +qmanifest: cannot change directory to not_a_tree: No such file or directory diff --git a/tests/qmanifest/manifest05.good b/tests/qmanifest/manifest05.good index 77a54c5..4849a71 100644 --- a/tests/qmanifest/manifest05.good +++ b/tests/qmanifest/manifest05.good @@ -1 +1 @@ -manifest: no such overlay: notatree +qmanifest: no such overlay: notatree