summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Dedecker <dedeckeh@gmail.com>2014-12-04 12:07:19 +0000
committerSteven Barth <steven@midlink.org>2014-12-08 18:13:45 +0100
commitdb99fce3f59d1a9629ca5bc7ec8f8208acf02816 (patch)
tree37f8b6acf3fee8ce705e3517b4c91df2e657b142
parent3c4a49e215379ea207c38c08e990a89b31be3f36 (diff)
downloadnetifd-db99fce3f59d1a9629ca5bc7ec8f8208acf02816.tar.gz
netifd: Fix interface auto disable when doing network reload
Keep interface down when interface auto parameter is set to 0 when doing network reload Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
-rw-r--r--interface.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/interface.c b/interface.c
index 733b5f1..4b5405e 100644
--- a/interface.c
+++ b/interface.c
@@ -1015,8 +1015,12 @@ interface_change_config(struct interface *if_old, struct interface *if_new)
})
if_old->config = if_new->config;
- if (!if_old->config_autostart && if_new->config_autostart)
- if_old->autostart = true;
+ if (if_old->config_autostart != if_new->config_autostart) {
+ if (if_old->config_autostart)
+ reload = true;
+
+ if_old->autostart = if_new->config_autostart;
+ }
if_old->device_config = if_new->device_config;
if_old->config_autostart = if_new->config_autostart;