diff options
author | Guy Harris <guy@alum.mit.edu> | 2019-06-27 23:37:01 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2019-06-27 23:37:01 -0700 |
commit | 94dfe9f2fe7abcd306ec67b7c8a44cbc7e6b1f75 (patch) | |
tree | 2741079b5e8b6dffe70e50dc287296aefc9d94ea /pcap-linux.c | |
parent | e5721e93749a94d07957aaa6dd8fe284aa42fb5a (diff) |
Fix tpo.
Diffstat (limited to 'pcap-linux.c')
-rw-r--r-- | pcap-linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-linux.c b/pcap-linux.c index 0f7e47d5..6f1eb642 100644 --- a/pcap-linux.c +++ b/pcap-linux.c @@ -3937,7 +3937,7 @@ activate_new(pcap_t *handle, int is_any_device) handle->linktype != DLT_LINUX_LAPD && handle->linktype != DLT_NETLINK) handle->linktype = DLT_LINUX_SLL; - if (handle->linkype == -1) { + if (handle->linktype == -1) { pcap_snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "unknown arptype %d, defaulting to cooked mode", arptype); |