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/core | |
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/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 e8c46306fa..a53855fdc0 100644 --- a/src/core/loopback-setup.c +++ b/src/core/loopback-setup.c @@ -51,7 +51,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_addr_new(RTM_NEWADDR, if_loopback, AF_INET, &ipv4); + r = sd_rtnl_message_new_addr(RTM_NEWADDR, if_loopback, AF_INET, &ipv4); if (r < 0) return r; @@ -80,7 +80,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_addr_new(RTM_NEWADDR, if_loopback, AF_INET6, &ipv6); + r = sd_rtnl_message_new_addr(RTM_NEWADDR, if_loopback, AF_INET6, &ipv6); if (r < 0) return r; @@ -113,7 +113,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_link_new(RTM_SETLINK, if_loopback, &req); + r = sd_rtnl_message_new_link(RTM_SETLINK, if_loopback, &req); if (r < 0) return r; |