From 7c2abb2c9f97ce74bd71f00cc3a65ad877794fee Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 12 Jul 2013 14:09:05 -0500 Subject: [PATCH] core: fix stray semicolon causing VPN routes to not be added --- src/nm-ip4-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nm-ip4-config.c b/src/nm-ip4-config.c index 2b2c0f0499..1abee174c2 100644 --- a/src/nm-ip4-config.c +++ b/src/nm-ip4-config.c @@ -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; }