From: Bernhard Bitsch <Bernhard.Bitsch@gmx.de>
To: development@lists.ipfire.org
Subject: Aw: [PATCH] Fix network-functions net membership check
Date: Mon, 23 Dec 2019 22:27:47 +0100 [thread overview]
Message-ID: <trinity-6529e88a-5762-441a-81d6-80c9c0af5f99-1577136467495@3c-app-gmx-bs55> (raw)
In-Reply-To: <20191223185412.13338-1-ipfr@tfitzgeorge.me.uk>
[-- Attachment #1: Type: text/plain, Size: 1142 bytes --]
Hi,
> Gesendet: Montag, 23. Dezember 2019 um 19:54 Uhr
> Von: "Tim FitzGeorge" <ipfr(a)tfitzgeorge.me.uk>
> An: development(a)lists.ipfire.org
> Betreff: [PATCH] Fix network-functions net membership check
>
> Replace textual comparison of two number with arithmetic in
> ip_address_in_Network().
>
> Fixes: 12263
> Signed-off-by: Tim FitzGeorge <ipfr(a)tfitzgeorge.me.uk>
> ---
> config/cfgroot/network-functions.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/config/cfgroot/network-functions.pl b/config/cfgroot/network-functions.pl
> index 8649d0502..589044c2a 100644
> --- a/config/cfgroot/network-functions.pl
> +++ b/config/cfgroot/network-functions.pl
> @@ -295,7 +295,7 @@ sub ip_address_in_network($$) {
> # Find end address
> my $broadcast_bin = $network_bin ^ (~$netmask_bin % 2 ** 32);
>
> - return (($address_bin ge $network_bin) && ($address_bin le $broadcast_bin));
> + return (($address_bin => $network_bin) && ($address_bin <= $broadcast_bin));
should work if you change '=>' to '>='
> }
>
> sub setup_upstream_proxy() {
> --
> 2.16.4
>
>
Bernhard
prev parent reply other threads:[~2019-12-23 21:27 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-23 18:54 Tim FitzGeorge
2019-12-23 21:27 ` Bernhard Bitsch [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=trinity-6529e88a-5762-441a-81d6-80c9c0af5f99-1577136467495@3c-app-gmx-bs55 \
--to=bernhard.bitsch@gmx.de \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox