summaryrefslogtreecommitdiffhomepage
path: root/interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/interface.c b/interface.c
index 6223e05..2cbe9ec 100644
--- a/interface.c
+++ b/interface.c
@@ -119,7 +119,7 @@ __interface_set_up(struct interface *iface)
}
static void
-__set_interface_down(struct interface *iface, bool force)
+__interface_set_down(struct interface *iface, bool force)
{
clear_interface_errors(iface);
@@ -161,7 +161,7 @@ interface_cb(struct device_user *dep, enum device_event ev)
if (iface->autostart && !config_init)
interface_set_up(iface);
} else
- __set_interface_down(iface, true);
+ __interface_set_down(iface, true);
}
static void
@@ -312,10 +312,10 @@ interface_set_up(struct interface *iface)
}
int
-set_interface_down(struct interface *iface)
+interface_set_down(struct interface *iface)
{
iface->autostart = false;
- __set_interface_down(iface, false);
+ __interface_set_down(iface, false);
return 0;
}