From ec2e91240c9bd48f9c0effb9ff5905f1e40cc819 Mon Sep 17 00:00:00 2001 From: Noam Meltzer Date: Thu, 16 Apr 2020 08:25:11 +0300 Subject: [PATCH] pcap-linux.c: Fix typo in error string --- pcap-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcap-linux.c b/pcap-linux.c index 4cc4804052..90d02bbef3 100644 --- a/pcap-linux.c +++ b/pcap-linux.c @@ -7168,7 +7168,7 @@ pcap_set_fanout_linux(pcap_t *p, uint16_t mode, uint16_t group_id) return 0; #else pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE, - errno, "funout is not supported"); + errno, "fanout is not supported"); return -1; #endif }