dect
/
libpcap
Archived
13
0
Fork 0

Fix some errors left behind by the conversion to the create/activate

model.
This commit is contained in:
guy 2008-04-08 03:06:03 +00:00
parent a45116b80c
commit 745e497e4c
1 changed files with 2 additions and 5 deletions

View File

@ -33,7 +33,7 @@
#ifndef lint
static const char rcsid[] _U_ =
"@(#) $Header: /tcpdump/master/libpcap/pcap-win32.c,v 1.37 2008-04-04 19:37:45 guy Exp $ (LBL)";
"@(#) $Header: /tcpdump/master/libpcap/pcap-win32.c,v 1.38 2008-04-08 03:06:03 guy Exp $ (LBL)";
#endif
#include <pcap-int.h>
@ -564,9 +564,6 @@ pcap_activate_win32(pcap_t *p)
/* Set the buffer size */
p->bufsize = PcapBufSize;
/* Store the timeout. Used by pcap_setnonblock() */
p->md.timeout= to_ms;
/* allocate Packet structure used during the capture */
if((p->Packet = PacketAllocatePacket())==NULL)
{
@ -665,7 +662,7 @@ pcap_activate_win32(pcap_t *p)
goto bad;
#endif /* HAVE_DAG_API */
PacketSetReadTimeout(p->adapter, to_ms);
PacketSetReadTimeout(p->adapter, p->md.timeout);
#ifdef HAVE_DAG_API
if(p->adapter->Flags & INFO_FLAG_DAG_CARD)