diff options
author | Tom Gundersen <teg@jklm.no> | 2014-02-14 22:39:48 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-02-15 12:14:45 +0100 |
commit | ee3a6a51e5b098aa0c9641ed71d275c459ad2f5a (patch) | |
tree | b97e0d80db759e2debacbe4a4a3f605f34520319 /src/nspawn | |
parent | a7b74db6e72f4f19f74eabc81c1ebb4cb8670f06 (diff) |
sd-rtnl: message_open_container - don't take a 'size' argument
We can always know the size based on the type, so let's do this inside the library.
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 51a1a6651d..fcc0f17aee 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1303,7 +1303,7 @@ static int setup_veth(int netns_fd) { return r; } - r = sd_rtnl_message_open_container(m, IFLA_LINKINFO, 0); + r = sd_rtnl_message_open_container(m, IFLA_LINKINFO); if (r < 0) { log_error("Failed to open netlink container: %s", strerror(-r)); return r; @@ -1315,13 +1315,13 @@ static int setup_veth(int netns_fd) { return r; } - r = sd_rtnl_message_open_container(m, IFLA_INFO_DATA, 0); + r = sd_rtnl_message_open_container(m, IFLA_INFO_DATA); if (r < 0) { log_error("Failed to open netlink container: %s", strerror(-r)); return r; } - r = sd_rtnl_message_open_container(m, VETH_INFO_PEER, sizeof(struct ifinfomsg)); + r = sd_rtnl_message_open_container(m, VETH_INFO_PEER); if (r < 0) { log_error("z Failed to open netlink container: %s", strerror(-r)); return r; |