diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2022-03-08 14:30:58 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2022-03-08 14:30:58 +0100 |
commit | e75cc82c46e0f1208fbac03530da6a30976c7fd6 (patch) | |
tree | 4c6fd151b576e828bd46b0c8f063461dee9c4f91 /pcap-rpcap.c | |
parent | ef7f81e99125bfbbb6732f56d441bddadaaad885 (diff) |
Fix a typo
Diffstat (limited to 'pcap-rpcap.c')
-rw-r--r-- | pcap-rpcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-rpcap.c b/pcap-rpcap.c index 713d9baa..062f1107 100644 --- a/pcap-rpcap.c +++ b/pcap-rpcap.c @@ -2175,7 +2175,7 @@ static int rpcap_doauth_userinfo(SOCKET sockctrl, SSL *ssl, uint8 *ver, const ch * such malarkey, so... probably it will be fine? */ if (sscanf(ptr, "%%%02hhx", (unsigned char *)(buf+pos)) == 1) ptr += 2; - /* other implemntations aside, rejecting null bytes seems prudent */ + /* other implementations aside, rejecting null bytes seems prudent */ if (buf[pos] == '\0') { snprintf(errbuf, PCAP_ERRBUF_SIZE, "Invalid escape `%%00` in userinfo"); |