Skip to content

Commit 2352738

Browse files
committed
Fix some tpyoes.
1 parent 340d28d commit 2352738

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pcap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4893,7 +4893,7 @@ pcap_findalldevs_ex(const char *source, struct pcap_rmtauth *auth _USED_FOR_REMO
48934893
#ifdef ENABLE_REMOTE
48944894
return (pcap_findalldevs_ex_remote(source, auth, alldevs, errbuf));
48954895
#else
4896-
pcap_strlcpy(errbuf, "Remote packte capture is not supported",
4896+
pcap_strlcpy(errbuf, "Remote packet capture is not supported",
48974897
PCAP_ERRBUF_SIZE);
48984898
return (PCAP_ERROR);
48994899
#endif
@@ -4956,7 +4956,7 @@ pcap_open(const char *source, int snaplen, int flags, int read_timeout,
49564956
return (pcap_open_rpcap(source, snaplen, flags, read_timeout,
49574957
auth, errbuf));
49584958
#else
4959-
pcap_strlcpy(errbuf, "Remote packte capture is not supported",
4959+
pcap_strlcpy(errbuf, "Remote packet capture is not supported",
49604960
PCAP_ERRBUF_SIZE);
49614961
return (NULL);
49624962
#endif

0 commit comments

Comments
 (0)