diff options
author | Tom Gundersen <teg@jklm.no> | 2013-12-06 18:16:16 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2013-12-16 17:28:18 +0100 |
commit | fc25d7f8050f262fa6cafeb2a1032e6eb3e7b412 (patch) | |
tree | 97369539c35eacfa87c33e859bea8f7acd267223 /src/libsystemd-rtnl/rtnl-util.c | |
parent | 23a7f0f721ff4e3b3fd4ed87f7d8e01ebad20093 (diff) |
rtnl: simplify link_new()
Drop most of the arguments and instead introduce link_set_{flags,type}.
Diffstat (limited to 'src/libsystemd-rtnl/rtnl-util.c')
-rw-r--r-- | src/libsystemd-rtnl/rtnl-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd-rtnl/rtnl-util.c b/src/libsystemd-rtnl/rtnl-util.c index 4e7661bb77..264b72ec37 100644 --- a/src/libsystemd-rtnl/rtnl-util.c +++ b/src/libsystemd-rtnl/rtnl-util.c @@ -34,7 +34,7 @@ int rtnl_set_link_name(sd_rtnl *rtnl, int ifindex, const char *name) { assert(ifindex > 0); assert(name); - r = sd_rtnl_message_link_new(RTM_SETLINK, ifindex, 0, 0, &message); + r = sd_rtnl_message_link_new(RTM_SETLINK, ifindex, &message); if (r < 0) return r; @@ -61,7 +61,7 @@ int rtnl_set_link_properties(sd_rtnl *rtnl, int ifindex, const char *alias, if (!alias && !mac && mtu == 0) return 0; - r = sd_rtnl_message_link_new(RTM_SETLINK, ifindex, 0, 0, &message); + r = sd_rtnl_message_link_new(RTM_SETLINK, ifindex, &message); if (r < 0) return r; |