s/start_pending_interfaces/interface_start_pending/
authorFelix Fietkau <nbd@openwrt.org>
Fri, 29 Jul 2011 17:27:21 +0000 (19:27 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 29 Jul 2011 17:27:21 +0000 (19:27 +0200)
config.c
interface.c
interface.h

index 4e98f60..cc3e121 100644 (file)
--- a/config.c
+++ b/config.c
@@ -168,5 +168,5 @@ config_init_interfaces(const char *name)
        device_free_all();
        config_init = false;
 
-       start_pending_interfaces();
+       interface_start_pending();
 }
index 2cbe9ec..5cefd4c 100644 (file)
@@ -321,7 +321,7 @@ interface_set_down(struct interface *iface)
 }
 
 void
-start_pending_interfaces(void)
+interface_start_pending(void)
 {
        struct interface *iface;
 
index 61189a1..9d68635 100644 (file)
@@ -84,6 +84,6 @@ int interface_add_route(struct interface *iface, struct device_route *route);
 void interface_del_route(struct interface *iface, struct device_route *route);
 void interface_del_all_routes(struct interface *iface);
 
-void start_pending_interfaces(void);
+void interface_start_pending(void);
 
 #endif