diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-21 01:03:26 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-21 01:03:26 +0100 |
commit | 28383ba18963cdedd98ced271b3425f7321119b7 (patch) | |
tree | 5d6254dbdd2dd07476cfaf7b4fd9a72c9048e9c2 /src/machine/machine-dbus.c | |
parent | 850516e012f0e2c96cecb63c1e8997e13912fcd6 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index db379d2f8b..7f3b486035 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; |