From patchwork Sat Mar 12 13:34:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 5345 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) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4KG3g33yBqz3xK1 for ; Sat, 12 Mar 2022 13:34:07 +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) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4KG3g22P1Rz4Cx; Sat, 12 Mar 2022 13:34:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4KG3g22D7vz2yrT; Sat, 12 Mar 2022 13:34:06 +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) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4KG3g06ZpMz2xCV for ; Sat, 12 Mar 2022 13:34:04 +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 4KG3g02X69zfY for ; Sat, 12 Mar 2022 13:34:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1647092044; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xjYaUt6keaXFnA1FYIYe7nNyBbQRSIo/kwNpRRoJyU8=; b=SM8o301hh4+fwIU6NaH4j+glej5YC6zlBm9/4pB5D+wy2g3owkdbKyk3IeJEGqkJ/CzL5U 3/XZxxX5gCpmFRDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1647092044; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xjYaUt6keaXFnA1FYIYe7nNyBbQRSIo/kwNpRRoJyU8=; b=aD8AX1/p8mhy/QWYA8hUJyUl8DfxAczbjqt5THGunTxdRWHiK9iE+cDz5KS1Yq/6A18OXP lBVuDsjsbviljkTKRfR9eIZnMCuspk0S5kgRIp8cXzZekWcDyt+IvjHrvDq19H/MUS18FK 5K1zxR06b50GV4dmC0JwSOUvW7XtL+c9OWM5U0nGlRNO1W6GCxNf0QjU9tVHT7X+UK1nkU uXuLj64IXmFKxQ+dQXdZGxhI9CQC5QxrDtQJ+xYhKw5XgSfP6Vew5EJKHqdAbTf0txIppS FYAS03+xiHNoVnyBS61QfXfqsxU80A6pg4sNb81iRg6o805vUzEBgbsi2aVTsg== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] ids.cgi: Fixed trivial typos in comment Date: Sat, 12 Mar 2022 14:34:00 +0100 Message-Id: <20220312133400.2471-1-matthias.fischer@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: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Matthias Fischer --- html/cgi-bin/ids.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/ids.cgi b/html/cgi-bin/ids.cgi index b05912645..76c2b99a9 100644 --- a/html/cgi-bin/ids.cgi +++ b/html/cgi-bin/ids.cgi @@ -619,7 +619,7 @@ if ($cgiparams{'RULESET'} eq $Lang::tr{'ids apply'}) { # Convert interface name into upper case. my $zone_upper = uc($zone); - # Check if the IDS is enabled for this interaces. + # Check if the IDS is enabled for these interfaces. if ($cgiparams{"ENABLE_IDS_$zone_upper"}) { # Increase count. $monitored_zones++;