Fixed spurious next

git-svn-id: file:///home/svn/framework3/trunk@6861 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
HD Moore 2009-07-22 02:56:40 +00:00
parent ff9efe45bc
commit 54fc8e70e2
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class Metasploit3 < Msf::Auxiliary
return if not eth.ethertype == 0x0806
arp = Racket::ARP.new(eth.payload)
next if not arp.opcode == Racket::ARP::ARPOP_REPLY
return if not arp.opcode == Racket::ARP::ARPOP_REPLY
{:raw => pkt, :eth => eth, :arp => arp}
end