diff options
author | Jörg Mayer <jmayer@loplof.de> | 2003-04-13 13:51:32 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2003-04-13 13:51:32 +0000 |
commit | b0fc3cb0eb087d65909ce45115b576b6162334e1 (patch) | |
tree | db0b467cbdfa0716e2271cb5a13f652a97c06739 /make-manuf | |
parent | 7bcd465705a6f8583e50db851652633c74f36990 (diff) | |
download | wireshark-b0fc3cb0eb087d65909ce45115b576b6162334e1.tar.gz wireshark-b0fc3cb0eb087d65909ce45115b576b6162334e1.tar.bz2 wireshark-b0fc3cb0eb087d65909ce45115b576b6162334e1.zip |
make-manuf:
Don't print Cavebear skipped - it makes the output unusable.
manuf.tmpl:
Remove entries that overwrite identical or similar results from IEEE
manuf:
Rebuild to reflect the changes in manuf.tmpl and add some new IEEE
entries.
svn path=/trunk/; revision=7447
Diffstat (limited to 'make-manuf')
-rwxr-xr-x | make-manuf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-manuf b/make-manuf index 57c7d1e795..052cbca946 100755 --- a/make-manuf +++ b/make-manuf @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# $Id: make-manuf,v 1.11 2003/04/08 16:41:58 jmayer Exp $ +# $Id: make-manuf,v 1.12 2003/04/13 13:51:32 jmayer Exp $ # # Make-manuf - Creates a file containing ethernet OUIs and their # company IDs. It merges the databases at @@ -127,7 +127,7 @@ foreach $line (split(/\n/, $cb_list)) { # Ensure OUI is all upper-case $oui =~ tr/a-f/A-F/; if (exists $oui_list{$oui}) { - printf "$oui - Skipping CaveBear \"$manuf\" in favor of \"$oui_list{$oui}\"\n"; + # printf "$oui - Skipping CaveBear \"$manuf\" in favor of \"$oui_list{$oui}\"\n"; $cb_skipped++; } else { $oui_list{$oui} = &shorten($manuf); |