diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-12 14:47:19 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-12 14:47:19 +0000 |
commit | 42f55dc34b24ea17c7752d489ba9887b7b34ea18 (patch) | |
tree | 56798a366de37d0ba2389063fb0521baa0f9b932 /package/libpcap/patches/106-protocol_api.patch | |
parent | 3da5c74ed893b9419669c7838d61405d9f837051 (diff) |
[package] libpcap: fix typo in protocol api patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15802 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libpcap/patches/106-protocol_api.patch')
-rw-r--r-- | package/libpcap/patches/106-protocol_api.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libpcap/patches/106-protocol_api.patch b/package/libpcap/patches/106-protocol_api.patch index 09e3e880ac..dc5e45a246 100644 --- a/package/libpcap/patches/106-protocol_api.patch +++ b/package/libpcap/patches/106-protocol_api.patch @@ -24,7 +24,7 @@ * we also have PF_PACKET support.) */ - 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) { (void)snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "socket: %s", pcap_strerror(errno)); |