mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 23:20:15 +01:00
core: fix stray semicolon causing VPN routes to not be added
This commit is contained in:
parent
317bd6bf6c
commit
7c2abb2c9f
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ nm_ip4_config_destination_is_direct (NMIP4Config *config, guint32 network, int p
|
|||
guint32 item_address = nm_ip4_address_get_address (item);
|
||||
int item_plen = nm_ip4_address_get_prefix (item);
|
||||
|
||||
if (item_plen <= plen && same_prefix (item_address, network, item_plen));
|
||||
if (item_plen <= plen && same_prefix (item_address, network, item_plen))
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue