From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernhard Held To: development@lists.ipfire.org Subject: [PATCH v3 3/4] proxy.cgi: strip newline from subnet parameters Date: Wed, 14 Feb 2018 20:35:21 +0100 Message-ID: <20180214193522.26880-4-berny156@gmx.de> In-Reply-To: <20180214193522.26880-1-berny156@gmx.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0372250288777862726==" List-Id: --===============0372250288777862726== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable The subnets in @templist end with newlines. Theses have to be removed before printing and comparison with other subnets. --- html/cgi-bin/proxy.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi index 6aa14e15a..d565ffbdc 100644 --- a/html/cgi-bin/proxy.cgi +++ b/html/cgi-bin/proxy.cgi @@ -3061,6 +3061,8 @@ END close(SUBNETS); } =20 + chomp(@templist); + foreach (@templist) { @temp =3D split(/\//); @@ -3069,7 +3071,6 @@ END ($temp[0] ne $netsettings{'BLUE_NETADDRESS'}) && ($temp[1] ne $netsetti= ngs{'BLUE_NETMASK'}) ) { - chomp $temp[1]; print FILE " ||\n (isInNet(myIpAddress(), \"$temp[0]\", \"$temp[1]\= "))"; } } --=20 2.16.1 --===============0372250288777862726==--