diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-02-13 13:53:25 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-02-13 13:53:25 +0100 |
commit | d595c5cc9e894c3608ed634052b0ba93aa94bf2f (patch) | |
tree | 1245291c4f8c63dd04599e1550b5684d83795c1e /src/network/networkd-link.c | |
parent | cf6a8911738fe2635a5210769d5348b05b166691 (diff) |
rtnl: rename constructors from the form sd_rtnl_xxx_yyy_new() to sd_rtnl_xxx_new_yyy()
So far we followed the rule to always indicate the "flavour" of
constructors after the "_new_" or "_open_" in the function name, so
let's keep things in sync here for rtnl and do the same.
Diffstat (limited to 'src/network/networkd-link.c')
-rw-r--r-- | src/network/networkd-link.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 3ef7622f48..d83c4cef8b 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -435,7 +435,7 @@ static int link_set_mtu(Link *link, uint32_t mtu) { log_debug_link(link, "setting MTU: %" PRIu32, mtu); - r = sd_rtnl_message_link_new(RTM_SETLINK, link->ifindex, &req); + r = sd_rtnl_message_new_link(RTM_SETLINK, link->ifindex, &req); if (r < 0) { log_error_link(link, "Could not allocate RTM_SETLINK message"); return r; @@ -792,7 +792,7 @@ static int link_up(Link *link) { log_debug_link(link, "bringing link up"); - r = sd_rtnl_message_link_new(RTM_SETLINK, link->ifindex, &req); + r = sd_rtnl_message_new_link(RTM_SETLINK, link->ifindex, &req); if (r < 0) { log_error_link(link, "Could not allocate RTM_SETLINK message"); return r; @@ -959,7 +959,7 @@ static int link_get(Link *link) { log_debug_link(link, "requesting link status"); - r = sd_rtnl_message_link_new(RTM_GETLINK, link->ifindex, &req); + r = sd_rtnl_message_new_link(RTM_GETLINK, link->ifindex, &req); if (r < 0) { log_error_link(link, "Could not allocate RTM_GETLINK message"); return r; |