diff options
author | Kay Sievers <kay@vrfy.org> | 2012-11-08 01:51:10 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-11-09 12:39:27 +0100 |
commit | 87281abdf3ed609b6416cabac00927bd0f26ccd9 (patch) | |
tree | 0793de72de296447957b3803945960787c92a913 /hwdb/ids-update.pl | |
parent | 40b8acd039cf1ea00167017e63d9c0a773002f0e (diff) |
hwdb: OUI - use ID_OUI_FROM_DATABASE=
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); |