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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 684DF158087 for ; Fri, 31 Dec 2021 15:36:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D85A2BC033; Fri, 31 Dec 2021 15:36:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0A2F2BC031 for ; Fri, 31 Dec 2021 15:36:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91F2A342F2C for ; Fri, 31 Dec 2021 15:36:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FFC226A for ; Fri, 31 Dec 2021 15:36:28 +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: <1640888461.8e19c9d7218ebfb5380169df7b7978cbb782310c.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: main.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 8e19c9d7218ebfb5380169df7b7978cbb782310c X-VCS-Branch: master Date: Fri, 31 Dec 2021 15:36:28 +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: 979c5a35-9079-41c9-875e-35462d4c3a4d X-Archives-Hash: 073e8aca6c2f2a4906ff8832b4d61aae commit: 8e19c9d7218ebfb5380169df7b7978cbb782310c Author: Fabian Groffen gentoo org> AuthorDate: Thu Dec 30 18:21:01 2021 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Dec 30 18:21:01 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=8e19c9d7 main: move comment to relevant block Signed-off-by: Fabian Groffen gentoo.org> main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index b3f2f6d..1337cb0 100644 --- a/main.c +++ b/main.c @@ -485,10 +485,10 @@ read_portage_file(const char *file, enum portage_file_type type, void *data) continue; } - /* Handle "source" keyword */ if (type == ENV_FILE) { size_t curline = line; + /* Handle "source" keyword */ if (strncmp(buf, "source ", 7) == 0) { const char *sfile = buf + 7;