[Rt-commit] [rtir] 02/02: Fix spelling of "suffix"
Alex Vandiver
alexmv at bestpractical.com
Wed Mar 25 12:45:58 EDT 2015
This is an automated email from the git hooks/post-receive script.
alexmv pushed a commit to branch 3.0/ipv6-regex
in repository rtir.
commit 6da96e18746007ff39892137673d94acca5554c7
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Mon Mar 23 16:51:25 2015 -0400
Fix spelling of "suffix"
---
lib/RT/Action/RTIR_FindIP.pm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/lib/RT/Action/RTIR_FindIP.pm b/lib/RT/Action/RTIR_FindIP.pm
index c65eed2..1a7e9c5 100644
--- a/lib/RT/Action/RTIR_FindIP.pm
+++ b/lib/RT/Action/RTIR_FindIP.pm
@@ -59,28 +59,28 @@ use Net::CIDR ();
my $IPv4_mask_re = qr{3[0-2]|[1-2]?[0-9]};
my $IPv4_prefix_check_re = qr{(?:^|\b)(?<![0-9.])};
-my $IPv4_sufix_check_re = qr{(?!\.?[0-9])};
+my $IPv4_suffix_check_re = qr{(?!\.?[0-9])};
my $IPv4_CIDR_re = qr{
$IPv4_prefix_check_re
$RE{net}{CIDR}{IPv4}{-keep}
- $IPv4_sufix_check_re
+ $IPv4_suffix_check_re
}x;
my $IPv4_re = qr[
$IPv4_prefix_check_re
(?!0\.0\.0\.0)
($RE{net}{IPv4})
(?!/$IPv4_mask_re)
- $IPv4_sufix_check_re
+ $IPv4_suffix_check_re
]x;
my $IPv6_mask_re = qr{12[0-8]|1[01][0-9]|[1-9]?[0-9]};
my $IPv6_prefix_check_re = qr{(?:^|\b)(?<![0-9.])};
-my $IPv6_sufix_check_re = qr{(?!(?:\:{0,2}|\.)[0-9a-fA-F])};
+my $IPv6_suffix_check_re = qr{(?!(?:\:{0,2}|\.)[0-9a-fA-F])};
my $IPv6_re = qr[
$IPv6_prefix_check_re
($Regexp::IPv6::IPv6_re)
(?:/($IPv6_mask_re))?
- $IPv6_sufix_check_re
+ $IPv6_suffix_check_re
]x;
my $IP_re = qr{$IPv6_re|$IPv4_re|$IPv4_CIDR_re};
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the rt-commit
mailing list