diff options
author | Kay Sievers <kay@vrfy.org> | 2013-02-04 18:55:10 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-02-04 18:55:10 +0100 |
commit | f2f1861383c5cf4c07a7c6098d7c0b7134f06d51 (patch) | |
tree | 99b614287d0e9eaf9fddca4344142a1c45a49943 /hwdb/ids-update.pl | |
parent | 2f8d077ece024b985f2501dc8c904c2d29967acb (diff) |
hwdb: update
Diffstat (limited to 'hwdb/ids-update.pl')
-rwxr-xr-x | hwdb/ids-update.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hwdb/ids-update.pl b/hwdb/ids-update.pl index 13596b85c3..5782bb51ef 100755 --- a/hwdb/ids-update.pl +++ b/hwdb/ids-update.pl @@ -219,6 +219,7 @@ sub oui { open(IN, "<", "iab.txt"); while (my $line = <IN>) { + $line =~ s/^ +//; $line =~ s/\s+$//; $line =~ m/^([0-9A-F]{2})-([0-9A-F]{2})-([0-9A-F]{2})\s*\(hex\)\s*.+$/; if (defined $1) { @@ -241,6 +242,7 @@ sub oui { open(IN, "<", "oui.txt"); while (my $line = <IN>) { + $line =~ s/^ +//; $line =~ s/\s+$//; $line =~ m/^([0-9A-F]{6})\s*\(base 16\)\s*(.+)$/; if (defined $1) { |