From d595c5cc9e894c3608ed634052b0ba93aa94bf2f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 13 Feb 2014 13:53:25 +0100 Subject: 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. --- src/nspawn/nspawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nspawn/nspawn.c') diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 1437aa73ed..679c005071 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1278,7 +1278,7 @@ static int move_network_interfaces(pid_t pid) { return -errno; } - r = sd_rtnl_message_link_new(RTM_NEWLINK, ifi, &m); + r = sd_rtnl_message_new_link(RTM_NEWLINK, ifi, &m); if (r < 0) { log_error("Failed to allocate netlink message: %s", strerror(-r)); return r; -- cgit v1.2.3-54-g00ecf