public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Network::network_equal: fix definition check of array
@ 2018-02-11 23:19 Bernhard Held
  2018-02-11 23:38 ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Bernhard Held @ 2018-02-11 23:19 UTC (permalink / raw)
  To: development

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

---
 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;
 	}
 
-- 
2.16.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Network::network_equal: fix definition check of array
  2018-02-11 23:19 [PATCH] Network::network_equal: fix definition check of array Bernhard Held
@ 2018-02-11 23:38 ` Michael Tremer
  2018-02-12  0:19   ` Bernhard Held
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2018-02-11 23:38 UTC (permalink / raw)
  To: development

[-- 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;
>  	}
>  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Network::network_equal: fix definition check of array
  2018-02-11 23:38 ` Michael Tremer
@ 2018-02-12  0:19   ` Bernhard Held
  2018-02-12 11:08     ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Bernhard Held @ 2018-02-12  0:19 UTC (permalink / raw)
  To: development

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

On 02/12/2018 at 12:38 AM, Michael Tremer wrote:
> 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()?)

Interesting, I'm testing on IPFire 2.19. Here perl 5.12 prefers the '$'.
My host with Perl 5.26 indeed prefers the '@' as well.

Which perl versions apply for network-functions.pl?

> You can use the testsuite at the bottom of the file to confirm that the
> functions are doing what they are supposed to do.
Thanks, this helps ;-)

Regards,
Bernhard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Network::network_equal: fix definition check of array
  2018-02-12  0:19   ` Bernhard Held
@ 2018-02-12 11:08     ` Michael Tremer
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2018-02-12 11:08 UTC (permalink / raw)
  To: development

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

Hi,

the perl version is a bit outdated that we are running on IPFire. It's perl
5.12.3: https://git.ipfire.org/?p=ipfire-2.x.git;a=blob;f=lfs/perl;h=0c239318c39
15cdfbad3ff602b075bb425513bf3;hb=HEAD

I ran that testsuite with exactly that version of perl.

Best,
-Michael

On Mon, 2018-02-12 at 01:19 +0100, Bernhard Held wrote:
> On 02/12/2018 at 12:38 AM, Michael Tremer wrote:
> > 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()?)
> 
> Interesting, I'm testing on IPFire 2.19. Here perl 5.12 prefers the '$'.
> My host with Perl 5.26 indeed prefers the '@' as well.
> 
> Which perl versions apply for network-functions.pl?
> 
> > You can use the testsuite at the bottom of the file to confirm that the
> > functions are doing what they are supposed to do.
> 
> Thanks, this helps ;-)
> 
> Regards,
> Bernhard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-12 11:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-11 23:19 [PATCH] Network::network_equal: fix definition check of array Bernhard Held
2018-02-11 23:38 ` Michael Tremer
2018-02-12  0:19   ` Bernhard Held
2018-02-12 11:08     ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox