diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-02 12:53:59 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-02 12:53:59 +0200 |
commit | 4ca3248ff0bc0d7b12fa2f8077c91b18fc6e7676 (patch) | |
tree | 128a3c2e53fe2dba31c368396830b70d977f1f05 | |
parent | 7ca1a4ce12dfe0ded199526571414bec9362bedc (diff) |
move system_flush_routes() call to mark_interface_down()
-rw-r--r-- | interface.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/interface.c b/interface.c index 304cccf..10a9174 100644 --- a/interface.c +++ b/interface.c @@ -145,6 +145,7 @@ mark_interface_down(struct interface *iface) interface_ip_set_enabled(&iface->config_ip, false); interface_ip_flush(&iface->proto_ip); interface_flush_state(iface); + system_flush_routes(); iface->state = IFS_DOWN; } @@ -311,7 +312,6 @@ interface_proto_cb(struct interface_proto_state *state, enum interface_proto_eve netifd_log_message(L_NOTICE, "Interface '%s' is now down\n", iface->name); mark_interface_down(iface); - system_flush_routes(); interface_handle_config_change(iface); break; case IFPEV_LINK_LOST: @@ -320,7 +320,6 @@ interface_proto_cb(struct interface_proto_state *state, enum interface_proto_eve netifd_log_message(L_NOTICE, "Interface '%s' has lost the connection\n", iface->name); mark_interface_down(iface); - system_flush_routes(); iface->state = IFS_SETUP; break; } |