public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] Network::network_equal: fix definition check of array
Date: Sun, 11 Feb 2018 23:38:00 +0000	[thread overview]
Message-ID: <1518392280.2498.23.camel@ipfire.org> (raw)
In-Reply-To: <20180211231930.12738-1-berny156@gmx.de>

[-- Attachment #1: Type: text/plain, Size: 1090 bytes --]

Hello,

this patch shows the following perl errors:

defined(@array) is deprecated at config/cfgroot/network-functions.pl line 114.
	(Maybe you should just omit the defined()?)
defined(@array) is deprecated at config/cfgroot/network-functions.pl line 114.
	(Maybe you should just omit the defined()?)

You can use the testsuite at the bottom of the file to confirm that the
functions are doing what they are supposed to do.

Best,
-Michael

On Mon, 2018-02-12 at 00:19 +0100, Bernhard Held wrote:
> ---
>  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 2902aabb0..3bf17b092 100644
> --- a/config/cfgroot/network-functions.pl
> +++ b/config/cfgroot/network-functions.pl
> @@ -111,7 +111,7 @@ sub network_equal {
>  	my @bin1 = &network2bin($network1);
>  	my @bin2 = &network2bin($network2);
>  
> -	if (!defined $bin1 || !defined $bin2) {
> +	if (!defined @bin1 || !defined @bin2) {
>  		return undef;
>  	}
>  

  reply	other threads:[~2018-02-11 23:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-11 23:19 Bernhard Held
2018-02-11 23:38 ` Michael Tremer [this message]
2018-02-12  0:19   ` Bernhard Held
2018-02-12 11:08     ` Michael Tremer

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=1518392280.2498.23.camel@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --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