From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC856158088 for ; Sun, 26 Oct 2025 03:28:18 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id D3209341437 for ; Sun, 26 Oct 2025 03:28:18 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BDF5C1102F2; Sun, 26 Oct 2025 03:28:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id B3FD51102F2 for ; Sun, 26 Oct 2025 03:28:17 +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 63518341437 for ; Sun, 26 Oct 2025 03:28:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC41C2690 for ; Sun, 26 Oct 2025 03:28:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1761449288.b876d9b1c9ce58b8ba2440cf61bca7555a0dfb9b.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/emerge-webrsync X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b876d9b1c9ce58b8ba2440cf61bca7555a0dfb9b X-VCS-Branch: master Date: Sun, 26 Oct 2025 03:28:15 +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: 2e2fe85b-4e92-4570-81c5-ea19bc6c68e4 X-Archives-Hash: 4605b01c345a49e2568b9daba9718198 commit: b876d9b1c9ce58b8ba2440cf61bca7555a0dfb9b Author: Kerin Millar plushkava net> AuthorDate: Sun Oct 26 02:46:02 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 26 03:28:08 2025 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b876d9b1 emerge-webrsync: restore the missing option-arg for curl --continue-at The curl(1) user-agent supports a --continue-at option, which requires an option-argument. Where the option-argument is , curl will automatically try to determine how to resume a transfer. Further, emerge-webrsync forcibly injects the option if it detects that the value of FETCHCOMMAND specifies a curl command. However, the option-argument was unintentionally removed during a bout of re-factoring and (otherwise unrelated) bug fixing. This went unnoticed until now because wget is more commonly used. Restore it. Fixes: f3af8263ce544750a9e9a155b1264d07a86677d4 Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> bin/emerge-webrsync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/emerge-webrsync b/bin/emerge-webrsync index 53a3a12715..cca63ebb35 100755 --- a/bin/emerge-webrsync +++ b/bin/emerge-webrsync @@ -217,7 +217,7 @@ get_fetchcommand() { fi ;; curl) - opts="--continue-at -f -S" + opts="--continue-at - -f -S" if (( opt[quiet] )); then opts+=" -s" fi