diff options
author | Dan Williams <dcbw@redhat.com> | 2011-07-22 17:15:40 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-07-22 18:09:37 -0500 |
commit | 11c2824ef1bffe57a44402e10de601284bd977a9 (patch) | |
tree | ac5eb671ff528e1a97ed8a67f03bd533969f8798 | |
parent | abb89a7d2a4b893059a286f8faa0797f510912d5 (diff) | |
download | NetworkManager-11c2824ef1bffe57a44402e10de601284bd977a9.tar.gz |
core: remove dead libnl code
-rw-r--r-- | src/nm-system.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/nm-system.c b/src/nm-system.c index f64f13ba61..3995fab5bb 100644 --- a/src/nm-system.c +++ b/src/nm-system.c @@ -1026,7 +1026,6 @@ gboolean nm_system_replace_default_ip4_route (int ifindex, guint32 gw, guint32 mss) { struct rtnl_route *gw_route = NULL; - struct nl_handle *nlh; gboolean success = FALSE; const char *iface; int err; @@ -1034,9 +1033,6 @@ nm_system_replace_default_ip4_route (int ifindex, guint32 gw, guint32 mss) iface = nm_netlink_index_to_iface (ifindex); g_return_val_if_fail (iface != NULL, FALSE); - nlh = nm_netlink_get_default_handle (); - g_return_val_if_fail (nlh != NULL, FALSE); - err = replace_default_ip4_route (ifindex, gw, mss); if (err == 0) { return TRUE; @@ -1177,7 +1173,6 @@ gboolean nm_system_replace_default_ip6_route (int ifindex, const struct in6_addr *gw) { struct rtnl_route *gw_route = NULL; - struct nl_handle *nlh; gboolean success = FALSE; const char *iface; int err; @@ -1185,9 +1180,6 @@ nm_system_replace_default_ip6_route (int ifindex, const struct in6_addr *gw) iface = nm_netlink_index_to_iface (ifindex); g_return_val_if_fail (iface != NULL, FALSE); - nlh = nm_netlink_get_default_handle (); - g_return_val_if_fail (nlh != NULL, FALSE); - err = replace_default_ip6_route (ifindex, gw); if (err == 0) return TRUE; |