From 3c5081c7a6fb12810c0c2b8fb2ec4a24db104fb9 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 16 Apr 2025 10:33:37 -0700 Subject: [PATCH] monitor: fix spelling Exausted -> Exhausted Caught by codespell Fixes: 83a2457550e7 ("monitor: add support for limiting PCAP size/count") --- monitor/nlmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/nlmon.c b/monitor/nlmon.c index 76eb2db6..14a29eab 100644 --- a/monitor/nlmon.c +++ b/monitor/nlmon.c @@ -7433,7 +7433,7 @@ static bool check_pcap(struct nlmon *nlmon, size_t next_size) pcap_close(nlmon->pcap); - /* Exausted the single PCAP file */ + /* Exhausted the single PCAP file */ if (nlmon->max_files < 2) { printf("Reached maximum size of PCAP, exiting\n"); nlmon->pcap = NULL;