Skip to content

Commit

Permalink
Update OUI fetch tool
Browse files Browse the repository at this point in the history
  • Loading branch information
kimocoder committed Aug 9, 2023
1 parent fa7be32 commit 21ebeac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/fetch-oui
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ foreach $key (sort keys %ieee_reg_urls) {
print "Processing IEEE $key registry data from $url\n" if $verbose;
my $ua = LWP::UserAgent->new;
my $res = $ua->get($url);
die "Could not get $key data from $url\n" unless $res->is_success;
die $res->status_line unless $res->is_success;
my $content = $res->content;
my $content_length = length($content);
die "Zero-sized response from from $url\n" unless ($content_length > 0);
Expand Down

0 comments on commit 21ebeac

Please sign in to comment.