summaryrefslogtreecommitdiff
path: root/tunnel.c
diff options
context:
space:
mode:
authorHans Dedecker <dedeckeh@gmail.com>2015-03-18 16:54:48 +0100
committerSteven Barth <steven@midlink.org>2015-03-19 16:27:11 +0100
commit60f57b2bfb87c463fc271a9c3e8e1f97feaecdca (patch)
treece52bb7a5b8ea01df3957bf9a25567c05770c637 /tunnel.c
parent45fd905c980e56b20770d4b34556749fbca53fcc (diff)
downloadnetifd-60f57b2bfb87c463fc271a9c3e8e1f97feaecdca.tar.gz
netifd:Make sure interface device config is also cached
Fixes issue interface device config is not applied in some cases. As the interface device config was applied but not always cached; an interface device config diff was not always detected. Simplify device config setting by exposing as api only device_apply_config Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'tunnel.c')
-rw-r--r--tunnel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tunnel.c b/tunnel.c
index cdb83f0..aa670a3 100644
--- a/tunnel.c
+++ b/tunnel.c
@@ -72,7 +72,7 @@ tunnel_create(const char *name, struct blob_attr *attr)
device_init(dev, &tunnel_device_type, name);
tun->set_state = dev->set_state;
dev->set_state = tunnel_set_state;
- device_set_config(dev, &tunnel_device_type, attr);
+ device_apply_config(dev, &tunnel_device_type, attr);
device_set_present(dev, true);
return dev;