From c8de42303806e6a9a1fe15701748635242ac8fdb Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Tue, 7 Jan 2025 17:00:18 +0000 Subject: [PATCH] Fix finger-trouble in immediately previous commit. --- src/dnsmasq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dnsmasq.c b/src/dnsmasq.c index 85e28df..3c3b85e 100644 --- a/src/dnsmasq.c +++ b/src/dnsmasq.c @@ -2093,7 +2093,7 @@ int swap_to_tcp(struct frec *forward, time_t now, int status, struct dns_header /* No slots or no pipe */ if (i < 0 || pipe(pipefd) != 0) - return STAT_ABANDONED;` + return STAT_ABANDONED; if ((p = fork()) != 0) {