mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
libpcap: fix typo in protocol api patch
SVN-Revision: 15802
This commit is contained in:
parent
e5a836693e
commit
94c1598c3e
@ -24,7 +24,7 @@
|
|||||||
* we also have PF_PACKET support.)
|
* we also have PF_PACKET support.)
|
||||||
*/
|
*/
|
||||||
- sock_fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
|
- sock_fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
|
||||||
+ sock_fd = socket(PF_PACKET, SOCK_RAW, handle->opt.proto);
|
+ sock_fd = socket(PF_PACKET, SOCK_RAW, p->opt.proto);
|
||||||
if (sock_fd == -1) {
|
if (sock_fd == -1) {
|
||||||
(void)snprintf(p->errbuf, PCAP_ERRBUF_SIZE,
|
(void)snprintf(p->errbuf, PCAP_ERRBUF_SIZE,
|
||||||
"socket: %s", pcap_strerror(errno));
|
"socket: %s", pcap_strerror(errno));
|
||||||
|
Loading…
Reference in New Issue
Block a user