From 8f23ce8e53d5b016cbb05e24566739983c89894a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 11 Jan 2017 17:09:42 +0000 Subject: [PATCH] network-functions.pl: Fix code formatting Signed-off-by: Michael Tremer --- config/cfgroot/network-functions.pl | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/config/cfgroot/network-functions.pl b/config/cfgroot/network-functions.pl index 5559be5143..db9d7dbfc3 100644 --- a/config/cfgroot/network-functions.pl +++ b/config/cfgroot/network-functions.pl @@ -102,16 +102,19 @@ sub bin2ip($) { return $address; } -#Takes two network addresses and compares them against each other -#returns true if equal or false if not -sub network_equal{ +# Takes two network addresses, compares them against each other +# and returns true if equal or false if not +sub network_equal { my $network1 = shift; my $network2 = shift; + my $bin1 = &network2bin($network1); my $bin2 = &network2bin($network2); - if ($bin1 eq $bin2){ + + if ($bin1 eq $bin2) { return 1; } + return 0; } -- 2.39.5