From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cBGt72TXJz34BP for ; Tue, 26 Aug 2025 18:49:35 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cBGt13sysz377f for ; Tue, 26 Aug 2025 18:49:29 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (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 mail01.ipfire.org (Postfix) with ESMTPSA id 4cBGsz5Tgbz5Tx; Tue, 26 Aug 2025 18:49:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1756234167; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=QfJ4XyypkJeOEA2XF+stKG2yTqseeA5zy36aWCNG/vo=; b=f8tDGTS67ZUe5g7aZHIEinHgWDJrUGs8C2fDUtkELkMyAIOoEVXhRDIM8kZhChX9p3icDY yGg8OQzqeoeKpiDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1756234167; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=QfJ4XyypkJeOEA2XF+stKG2yTqseeA5zy36aWCNG/vo=; b=XojnoG80tRmlLUjRKmZHdZzT6OeESxLaslDbRBDAj7WHT6wqKyqKSktWtT4o6SKEzFERNU J51dGhwn2e1K2vegXn6DymKasmxe3JMx03wgAgA4DmbrsWTyfF2Df3N2bRmhtyyzv0+ayb JNaQ8blH8WzPAf0aFS7coJmjz6L1oaR8NTKALLbyMONQ4JR/+Msg1s58hgLZ3IyxZFRXvr X8bNpG6fKrwOXF/u+TAxEdojkA7BN1drjNqTkWOjGxbOgEjl2mJkJU53Y4fGKAvyx/LDO2 Z19jiEDkzoEzBwLEHxQwBnbMU8GW2P49CIDe/hv6s9xF2nh17/9Ciie/mqhu4w== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] sudo: Update to version 1.9.17p2 Date: Tue, 26 Aug 2025 20:49:02 +0200 Message-ID: <20250826184904.6229-21-adolf.belka@ipfire.org> In-Reply-To: <20250826184904.6229-1-adolf.belka@ipfire.org> References: <20250826184904.6229-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 1.9.17p1 to 1.9.17p2 - Update of rootfile not required - Changelog 1.9.17p2 * Fixed a bug introduced in sudo 1.9.16 that could result in sudo sending SIGHUP to all processes on the system in certain rare cases. The bug could manifest if sudo is running a command in a pseudo-terminal, sudo terminates the command due to an internal error, and the user's terminal is revoked. GitHub issue #458. * Fixed a bug introduced in sudo 1.9.12 that caused sudo to abort when the "intercept" and "intercept_verify" options are enabled in sudoers and either the command line arguments or the environment contains a string larger than the page size (usually 4096). This only Linux affects systems that support the ptrace_readv_string() function. GitHub issue #453. * Fixed a bug in sudo's configure script introduced in sudo 1.9.17 that prevented mdoc-format man pages from being used on systems without the mandoc utility. Bug #1077. Signed-off-by: Adolf Belka --- lfs/sudo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/sudo b/lfs/sudo index c2c221417..f605ff683 100644 --- a/lfs/sudo +++ b/lfs/sudo @@ -24,7 +24,7 @@ include Config -VER = 1.9.17p1 +VER = 1.9.17p2 THISAPP = sudo-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 21771348a8de392767c366bb938951327dcc64a4cedee716a802435899e5135c218468271833a9e3ab9d90bda29e36c0870e27dd333d3a5c64fb8e3a5ebbff58 +$(DL_FILE)_BLAKE2 = dd42ff4fd571ba8489cc59d71a09c7e0483d21daf9faf7e697beedc04d9f170b01e60446af179c949a3da115b616fbec07aff8fbf8b7d502161c24d1b35b7a69 install : $(TARGET) -- 2.51.0