From patchwork Fri Oct 7 16:21:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 6048 Return-Path: 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 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4MkYTf3QYtz3wfW for ; Fri, 7 Oct 2022 16:21:26 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4MkYTc2zcSz1C9; Fri, 7 Oct 2022 16:21:24 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4MkYTc1WdQz2yF8; Fri, 7 Oct 2022 16:21:24 +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 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4MkYTb0lLWz2xGC for ; Fri, 7 Oct 2022 16:21: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 ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4MkYTZ3dkxzkG; Fri, 7 Oct 2022 16:21:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1665159682; 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; bh=7Ijms1H6RI0bELEo6u9wF3ymSR0kI4KiDZuUx5tyqGE=; b=FHSW1V6AyZDMZssZVr2LyjmpevftX0wKlMC+0K7Ng6QljApdlN2aZzNDFkhvxGCDyvlQdH DVRWYOPBvkk+hGpLZxpIuuTW5sgXvmSp9Wj7rKWtalLYwZxJNBqJ2Nh80GCk1a4bXG/c/O f32W+ys/rikWpyGRjnzRJmCommJCVgTh8eE8R9wYbTwfJQGOgxRED0dBvvbuG0kwwgEibT 7IAsavvT09yDFpxH7vHmoIFdvgiNJjDXL/NlyeHWJXm65VC9Lz7epJgbzHLYnp4Y6ZSXdh kQXW2fIMVgASlwUmRTXj9zgJPOSGV1ip4ITOkTysYdHlmdLHC5s80rMzAksL+A== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1665159682; 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; bh=7Ijms1H6RI0bELEo6u9wF3ymSR0kI4KiDZuUx5tyqGE=; b=X5LzOkswZAVwmXU6NmrU2gwT49ZYk3CFN6mXGFcngMX+2XDjURZUgmzhnDh0EhRuAOagPW QSJHQq/xkgPd/FAg== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] firewall: Fix missing whitespace for blocklist messages Date: Fri, 7 Oct 2022 16:21:16 +0000 Message-Id: <20221007162116.90603-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Fixes: #12934 Signed-off-by: Michael Tremer --- config/firewall/rules.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl index e1d7718a8..30ad20df1 100644 --- a/config/firewall/rules.pl +++ b/config/firewall/rules.pl @@ -760,7 +760,7 @@ sub ipblocklist () { # Check if logging is enabled. if($blocklistsettings{'LOGGING'} eq "on") { # Create logging rule. - run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist\" "); + run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist \""); } # Create Drop rule.