summaryrefslogtreecommitdiff
path: root/src/machine/machine-dbus.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-11-21 01:03:26 +0100
committerLennart Poettering <lennart@poettering.net>2013-11-21 01:03:26 +0100
commit28383ba18963cdedd98ced271b3425f7321119b7 (patch)
tree5d6254dbdd2dd07476cfaf7b4fd9a72c9048e9c2 /src/machine/machine-dbus.c
parent850516e012f0e2c96cecb63c1e8997e13912fcd6 (diff)
bus: add API calls to escape string components of objects paths
Diffstat (limited to 'src/machine/machine-dbus.c')
-rw-r--r--src/machine/machine-dbus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c
index db379d2f8..7f3b48603 100644
--- a/src/machine/machine-dbus.c
+++ b/src/machine/machine-dbus.c
@@ -176,7 +176,7 @@ int machine_object_find(sd_bus *bus, const char *path, const char *interface, vo
if (!p)
return 0;
- e = bus_path_unescape(p);
+ e = sd_bus_label_unescape(p);
if (!e)
return -ENOMEM;
@@ -194,7 +194,7 @@ char *machine_bus_path(Machine *m) {
assert(m);
- e = bus_path_escape(m->name);
+ e = sd_bus_label_escape(m->name);
if (!e)
return NULL;