From 25b3db5f07ae23cf0c39dbb77b955687eca14cf4 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 16 Jul 2018 18:41:56 -0700 Subject: [PATCH] harmless, but don't do a string comparison on numbers anyway, RT#79825 --- FS/FS/svc_IP_Mixin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/svc_IP_Mixin.pm b/FS/FS/svc_IP_Mixin.pm index c89245fe2..d28261141 100644 --- a/FS/FS/svc_IP_Mixin.pm +++ b/FS/FS/svc_IP_Mixin.pm @@ -80,7 +80,7 @@ sub svc_ip_check { my $error = $self->ip_check; return $error if $error; if ( my $router = $self->router ) { - if ( grep { $_->routernum eq $router->routernum } $self->allowed_routers ) { + if ( grep { $_->routernum == $router->routernum } $self->allowed_routers ) { return ''; } else { return 'Router '.$router->routername.' not available for this service'; -- 2.11.0