From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] Fixed some typos in network-functions.pl Date: Sun, 20 Sep 2015 13:49:37 +0200 Message-ID: <1442749777-19839-1-git-send-email-matthias.fischer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0125783409728145408==" List-Id: --===============0125783409728145408== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable "recognised" =3D> "recognized" Signed-off-by: Matthias Fischer --- config/cfgroot/network-functions.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/cfgroot/network-functions.pl b/config/cfgroot/network-fun= ctions.pl index cb4ca3d..c39b6d9 100644 --- a/config/cfgroot/network-functions.pl +++ b/config/cfgroot/network-functions.pl @@ -311,10 +311,10 @@ sub testsuite() { my $address2 =3D &bin2ip($address1); assert($address2 eq "8.8.8.8"); =20 - # Check if valid IP addresses are correctly recognised. + # Check if valid IP addresses are correctly recognized. foreach my $address ("1.2.3.4", "192.168.180.1", "127.0.0.1") { if (!&check_ip_address($address)) { - print "$address is not correctly recognised as a valid IP address!\n"; + print "$address is not correctly recognized as a valid IP address!\n"; exit 1; }; } @@ -322,7 +322,7 @@ sub testsuite() { # Check if invalid IP addresses are correctly found. foreach my $address ("456.2.3.4", "192.768.180.1", "127.1", "1", "a.b.c.d",= "1.2.3.4.5", "1.2.3.4/12") { if (&check_ip_address($address)) { - print "$address is recognised as a valid IP address!\n"; + print "$address is recognized as a valid IP address!\n"; exit 1; }; } --=20 2.5.3 --===============0125783409728145408==--