2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

pcap: Fix reading regular old Ethernet pcap files.

This broke the unit tests.

Fixes: 597177a283 ("pcap-file: Add support for Linux SLL formatted PCAP files.")
Acked-by: Alin Gabriel Serdean <aserdean@ovn.org>
Tested-by: Alin Gabriel Serdean <aserdean@ovn.org>
Reported-by: Alin Gabriel Serdean <aserdean@ovn.org>
Tested-by: Timothy Redaelli <tredaelli@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
Ben Pfaff
2018-11-15 09:38:39 -08:00
parent 713a45dbd5
commit 7f8d02a9ab

View File

@@ -40,7 +40,7 @@ enum ts_resolution {
};
enum network_type {
PCAP_ETHERNET = 0,
PCAP_ETHERNET = 1,
PCAP_LINUX_SLL = 0x71
};