dect
/
libpcap
Archived
13
0
Fork 0

Don't print the warning for an ARP type not supported by libpcap, return

it in the error message buffer, as is done for warnings in other
implementations of "pcap_open_live()".
This commit is contained in:
guy 2001-10-25 06:46:14 +00:00
parent 8ccdbcd8e5
commit 03c414f542
1 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
*/
#ifndef lint
static const char rcsid[] =
"@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.68 2001-10-08 01:06:21 guy Exp $ (LBL)";
"@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.69 2001-10-25 06:46:14 guy Exp $ (LBL)";
#endif
/*
@ -1051,11 +1051,11 @@ live_open_new(pcap_t *handle, char *device, int promisc,
* update "map_arphrd_to_dlt()"
* to handle the new type.
*/
fprintf(stderr,
snprintf(ebuf, PCAP_ERRBUF_SIZE,
"Warning: arptype %d not "
"supported by libpcap - "
"falling back to cooked "
"socket\n",
"socket",
arptype);
}
handle->linktype = DLT_LINUX_SLL;