Fix broken salt-tcpdump

This commit is contained in:
Mike Place 2015-04-14 13:35:16 -06:00
parent c2f4b6472b
commit c324e568aa

View file

@ -122,7 +122,7 @@ class PCAPParser(object):
'tcp': {}
}
(header, packet) = next(cap)
(header, packet) = cap.next()
eth_length, eth_protocol = self.parse_ether(packet)