its pcap_t pointer "handle", not "p", unlike most other libpcap code).
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.97 2003-11-04 07:05:34 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.98 2003-11-05 04:25:24 guy Exp $ (LBL)";
#endif
/*
/*
* Has "pcap_breakloop()" been called?
*/
- if (p->break_loop) {
+ if (handle->break_loop) {
/*
* Yes - clear the flag that indicates that it
* has, and return -2 as an indication that we
* were told to break out of the loop.
*/
- p->break_loop = 0;
+ handle->break_loop = 0;
return -2;
}
fromlen = sizeof(from);