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 4cBGt22jftz37BV for ; Tue, 26 Aug 2025 18:49:30 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (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 4cBGsv62bxz32gL for ; Tue, 26 Aug 2025 18:49:23 +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 4cBGsv4QHjz6P; Tue, 26 Aug 2025 18:49:23 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1756234163; 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=sr5yvHk2SzDJQux0yo4KJLQZUeP2ChQr8DJpJNHsHyo=; b=pPd3z62gWCx/MzTDToumM8wN/+mJBZvd7dsmGWtjPX1DSg06mpsDa09XeI+qfAJKQ9TQxy PGAOsNc9YwLd6WBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1756234163; 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=sr5yvHk2SzDJQux0yo4KJLQZUeP2ChQr8DJpJNHsHyo=; b=S6OpF8/MKXxiubELZh+9IFpIAABB21UbyiZL6f8x9xz90jJym4scN/C2G2aGmNrXGNMaZA SWorYCy2Y00MxrMrflq96uBBTQDUoSgv7hBhTHt6ecgF8cyiTbjuaTjO12v/8tc72lXaf6 ibrmvebXDYpMT2wQmeK5MBQOMnazyouNl8RwQkpw9uReUkZ5TDOKlWattclNlIbeEX44Rc KzaU9/NkNJniTihoRUQ5+Ghd82+ir5dNKfiR3LoqkhTbOSXxTO5g3v90C8voez4FtwfWOx 8myQBaBlSktvXew4oZKTveqMyREpb94W5np5ymiLhGXufFCQSRaz8T3Xqm/4qg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] fping: Update to version 5.4 Date: Tue, 26 Aug 2025 20:48:52 +0200 Message-ID: <20250826184904.6229-11-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 5.3 to 5.4 - Update of rootfile not required - Changelog 5.4 Bugfixes - Memory allocation safety checks for event storage (thanks David.A for bug report) - Fix off-by-one boundary check in seqmap code (thanks David.A for bug report) - The minimum value for the period (-p flag) is now 0.001 milliseconds, since it probably never makes sense to use a smaller value, and to avoid doing a very large memory allocation for event storage. Signed-off-by: Adolf Belka --- lfs/fping | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/fping b/lfs/fping index 714372710..1f8d41772 100644 --- a/lfs/fping +++ b/lfs/fping @@ -26,7 +26,7 @@ include Config SUMMARY = A program to ping multiple hosts -VER = 5.3 +VER = 5.4 THISAPP = fping-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = fping -PAK_VER = 9 +PAK_VER = 10 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = cc7b8bd2c8099c8bfb5e14d5b27f45cf1dc1aef24f941f5bf9c7aede95dac9472d2fe4033e8b7ea66fea8d901b99a7c908e7beff5484c0577c3f88517ef1a7ea +$(DL_FILE)_BLAKE2 = b3c2f3ac8cb2d27593ad7a937c2fb27ab67bef3cd0d912a2a08b52bf9a96b2e5a5637567f0ef1203f86fefc99036a78ee05d69f175bdb1c2d62b6eaf6e474284 install : $(TARGET) -- 2.51.0