From 6cc10f72edd598fb092f1bcca2de1a76b3b10d72 Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Fri, 26 May 2023 18:19:15 +0100 Subject: [PATCH] =/== typo in last commit. Signed-off-by: DL6ER --- src/dnsmasq/forward.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dnsmasq/forward.c b/src/dnsmasq/forward.c index 9b4b2551..8043aa71 100644 --- a/src/dnsmasq/forward.c +++ b/src/dnsmasq/forward.c @@ -2054,7 +2054,7 @@ static ssize_t tcp_talk(int first, int last, int start, unsigned char *packet, if (errno == 0) data_sent = 1; - else if (errno = ETIMEDOUT || errno == EHOSTUNREACH) + else if (errno == ETIMEDOUT || errno == EHOSTUNREACH) timedout = 1; #endif