Description: Fix the load_cache method.
 Fix a bug in the load_cache method.
 libnet-mac-vendor-perl (1.25-2) UNRELEASED; urgency=medium
 .
   * Team upload.
   * Found one more place that uses the network.
   * Depend on ieee-data and patch the module to use its copy of oui.txt, which
     is updated monthly (Closes: #805923).
   * Fix the load_cache method.
Author: Ivan Kohler <ivan-debian@420.am>
Bug-Debian: https://bugs.debian.org/805923

--- libnet-mac-vendor-perl-1.25.orig/lib/Net/MAC/Vendor.pm
+++ libnet-mac-vendor-perl-1.25/lib/Net/MAC/Vendor.pm
@@ -476,7 +476,7 @@ sub load_cache {
 	foreach my $entry ( @entries ) {
 		$entry =~ s/^\s+//;
 		my $oui = substr $entry, 0, 8;
-		__PACKAGE__->add_to_cache( parse_oui( $entry ) );
+		__PACKAGE__->add_to_cache( $oui, parse_oui( $entry ) );
 		}
 
 	return 1;
