ports/net/p5-Net-Pcap/patches/patch-t_10-fileno_t

14 lines
474 B
Text

OpenBSD pcap_open_offline(3) does not set file descriptor.
Index: t/10-fileno.t
--- t/10-fileno.t.orig
+++ t/10-fileno.t
@@ -111,7 +111,7 @@ SKIP: {
$fileno = undef;
eval { $fileno = Net::Pcap::get_selectable_fd($pcap) };
is( $@, '', "get_selectable_fd() on a dump file" );
- like( $fileno, '/^\d+$/', " - fileno must be an integer: $fileno" );
+ like( $fileno, '/^(-1|\d+)$/', " - fileno must be an integer: $fileno" );
}
Net::Pcap::close($pcap);