Get the right variable name for checking the 169.x.x.x address

https://github.com/Hamlib/Hamlib/issues/1461
pull/1464/head
Mike Black W9MDB 2023-12-24 22:26:04 -06:00
rodzic b2850ff7a8
commit 3ba1bc2c19
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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++;