dect
/
libpcap
Archived
13
0
Fork 0

Fix a typo (sigh, using both "p" and "handle" for the pcap_t pointer in

different modules can lead to confusion).
This commit is contained in:
guy 2008-04-14 21:04:51 +00:00
parent 2527d1ac88
commit f35ab115a6
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
#ifndef lint
static const char rcsid[] _U_ =
"@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.147 2008-04-14 20:40:58 guy Exp $ (LBL)";
"@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.148 2008-04-14 21:04:51 guy Exp $ (LBL)";
#endif
/*
@ -471,7 +471,7 @@ static void pcap_cleanup_linux( pcap_t *handle )
free(handle->md.device);
handle->md.device = NULL;
}
pcap_cleanup_live_common(p);
pcap_cleanup_live_common(handle);
}
/*