From 3ba1bc2c19300d73f8883d828574331ba662b5c5 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 24 Dec 2023 22:26:04 -0600 Subject: [PATCH] Get the right variable name for checking the 169.x.x.x address https://github.com/Hamlib/Hamlib/issues/1461 --- src/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network.c b/src/network.c index fa3336890..ebb301a75 100644 --- a/src/network.c +++ b/src/network.c @@ -1071,7 +1071,7 @@ static int is_networked(char *address, int address_length) sizeof(ipString)) != NULL) { // Use IP address if not 169.x.x.x - if (strncmp(address, "169", 3) != 0) + if (strncmp(ipString, "169", 3) != 0) { count++;