From 351fe2d89bf5d125cb46334c3e7629e7fc1cbc1d Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Thu, 26 Feb 2009 12:50:12 -0800 Subject: Fix regex for VIF name extraction Incorrect paren was breaking commands with VIF --- lib/Vyatta/Interface.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Vyatta/Interface.pm b/lib/Vyatta/Interface.pm index 5e9e058..8f50675 100644 --- a/lib/Vyatta/Interface.pm +++ b/lib/Vyatta/Interface.pm @@ -88,7 +88,7 @@ sub new { return unless $name; # Strip off vif from name - if ( $name =~ m/(\w)+\.(\d)+/ ) { + if ( $name =~ m/(\w+)\.(\d+)/ ) { $dev = $1; $vif = $2; } else { -- cgit v1.2.3