diff options
Diffstat (limited to 'hwdb/ids-update.pl')
-rwxr-xr-x | hwdb/ids-update.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hwdb/ids-update.pl b/hwdb/ids-update.pl index 3e0c14b0b2..b23224a91c 100755 --- a/hwdb/ids-update.pl +++ b/hwdb/ids-update.pl @@ -80,7 +80,7 @@ close(INP); close(OUTP); open(IN, "<", "oui.txt"); -open(OUT, ">", "20-OUI-vendor.hwdb"); +open(OUT, ">", "20-OUI.hwdb"); print(OUT "# This file is part of systemd.\n" . "#\n" . "# Data imported and updated from: http://standards.ieee.org/develop/regauth/oui/oui.txt\n"); @@ -93,7 +93,7 @@ while (my $line = <IN>) { my $text = $2; print(OUT "\n"); print(OUT "OUI:" . $vendor . "\n"); - print(OUT " ID_VENDOR_FROM_DATABASE=" . $text . "\n"); + print(OUT " ID_OUI_FROM_DATABASE=" . $text . "\n"); } } close(INP); |