summaryrefslogtreecommitdiff
path: root/src/libsystemd-rtnl/rtnl-util.c
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2013-11-11 18:55:34 +0100
committerTom Gundersen <teg@jklm.no>2013-11-13 19:48:44 +0100
commitfe4824e065765f4536c84916694bb050c4a5d0af (patch)
tree5ad97e681bb0b09027902b61b6135c0846eaea69 /src/libsystemd-rtnl/rtnl-util.c
parent38fdcbedd18e48f32a7ddcf99c7b97424a73b413 (diff)
rtnl: rename rtnl_bus_send_with_reply_and_block() to rtnl_bus_call()
Follow the equivalent rename in sd-bus to stay as similar as possible.
Diffstat (limited to 'src/libsystemd-rtnl/rtnl-util.c')
-rw-r--r--src/libsystemd-rtnl/rtnl-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd-rtnl/rtnl-util.c b/src/libsystemd-rtnl/rtnl-util.c
index 9707aa04a6..d40858a63b 100644
--- a/src/libsystemd-rtnl/rtnl-util.c
+++ b/src/libsystemd-rtnl/rtnl-util.c
@@ -42,7 +42,7 @@ int rtnl_set_link_name(sd_rtnl *rtnl, int ifindex, const char *name) {
if (r < 0)
return r;
- r = sd_rtnl_send_with_reply_and_block(rtnl, message, 0, NULL);
+ r = sd_rtnl_call(rtnl, message, 0, NULL);
if (r < 0)
return r;
@@ -81,7 +81,7 @@ int rtnl_set_link_properties(sd_rtnl *rtnl, int ifindex, const struct ether_addr
}
if (need_update) {
- r = sd_rtnl_send_with_reply_and_block(rtnl, message, 0, NULL);
+ r = sd_rtnl_call(rtnl, message, 0, NULL);
if (r < 0)
return r;
}