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

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