Skip to content

Commit f6ca31d

Browse files
committed
Merge branch 'rage-alex-oui'
2 parents 22051c9 + 1d5af3d commit f6ca31d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/rex/mac_oui.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def self.lookup_oui_fullname(mac)
99
if oui
1010
fullname = oui[0]
1111
fullname = oui[0] + ' / ' + oui[1] if oui[1] != ""
12-
12+
return fullname
1313
else
1414
return 'UNKNOWN'
1515
end
@@ -22,6 +22,7 @@ def self.lookup_oui_company_name(mac)
2222
if oui
2323
fullname = oui[0]
2424
fullname = oui[1] if oui[1] != ""
25+
return fullname
2526
else
2627
return 'UNKNOWN'
2728
end

0 commit comments

Comments
 (0)