From: Guy Harris Date: Sun, 10 Jun 2012 19:00:59 +0000 (-0700) Subject: Fix tpo. X-Git-Tag: libpcap-1.3.0^0 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/0a3c7d5e2c3e67d42fe44c97a3eb0fd6a990a07e Fix tpo. --- diff --git a/pcap-linux.c b/pcap-linux.c index 8d131cf1..8168e474 100644 --- a/pcap-linux.c +++ b/pcap-linux.c @@ -430,7 +430,7 @@ pcap_create(const char *device, char *ebuf) #ifdef PCAP_SUPPORT_CAN if ((strncmp(device, "can", 3) == 0 && isdigit(device[3])) || - (strncmp(device, "vcan", 4) == 0 && isigit(device[4]))) { + (strncmp(device, "vcan", 4) == 0 && isdigit(device[4]))) { return can_create(device, ebuf); } #endif