Skip to content

Commit

Permalink
don't capture uselessly
Browse files Browse the repository at this point in the history
  • Loading branch information
guillomovitch committed Aug 12, 2012
1 parent c380851 commit f218bb7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ sub _parseLanscan {
\s
(\S+)
\s
(\S+)
\S+
\s+
(\S+)
/x;
Expand All @@ -119,7 +119,7 @@ sub _parseLanscan {
MACADDR => alt2canonical($1),
STATUS => 'Down',
DESCRIPTION => $2,
lan_id => $4,
lan_id => $3,
};

push @interfaces, $interface;
Expand Down

0 comments on commit f218bb7

Please sign in to comment.