mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Get the right variable name for checking the 169.x.x.x address
https://github.com/Hamlib/Hamlib/issues/1461
This commit is contained in:
parent
b2850ff7a8
commit
3ba1bc2c19
1 changed files with 1 additions and 1 deletions
|
|
@ -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++;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue