diff options
author | Tom Gundersen <teg@jklm.no> | 2014-02-18 00:10:08 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-02-18 11:21:22 +0100 |
commit | 4fb7242cbbed0d865eb343548b8f0ee0fee71d85 (patch) | |
tree | b85d087cd059d195e0796cc0cda94140067d8c49 /src/core | |
parent | c0c5af00bec95567435bdfb818c69b2b669adfed (diff) |
sd-rtnl-message: store reference to the bus in the message
This mimics the sd-bus api, as we may need it in the future.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/loopback-setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/loopback-setup.c b/src/core/loopback-setup.c index 8a5b8121bc..e1f725cddb 100644 --- a/src/core/loopback-setup.c +++ b/src/core/loopback-setup.c @@ -50,7 +50,7 @@ static int add_addresses(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ad _cleanup_rtnl_message_unref_ sd_rtnl_message *ipv4 = NULL, *ipv6 = NULL; int r; - r = sd_rtnl_message_new_addr(RTM_NEWADDR, if_loopback, AF_INET, &ipv4); + r = sd_rtnl_message_new_addr(rtnl, RTM_NEWADDR, if_loopback, AF_INET, &ipv4); if (r < 0) return r; @@ -79,7 +79,7 @@ static int add_addresses(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ad if (!socket_ipv6_is_supported()) return 0; - r = sd_rtnl_message_new_addr(RTM_NEWADDR, if_loopback, AF_INET6, &ipv6); + r = sd_rtnl_message_new_addr(rtnl, RTM_NEWADDR, if_loopback, AF_INET6, &ipv6); if (r < 0) return r; @@ -112,7 +112,7 @@ static int start_interface(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ _cleanup_rtnl_message_unref_ sd_rtnl_message *req = NULL; int r; - r = sd_rtnl_message_new_link(RTM_SETLINK, if_loopback, &req); + r = sd_rtnl_message_new_link(rtnl, RTM_SETLINK, if_loopback, &req); if (r < 0) return r; |