summaryrefslogtreecommitdiff
path: root/hwdb/ids-update.pl
diff options
context:
space:
mode:
Diffstat (limited to 'hwdb/ids-update.pl')
-rwxr-xr-xhwdb/ids-update.pl2
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) {