From 28383ba18963cdedd98ced271b3425f7321119b7 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 21 Nov 2013 01:03:26 +0100 Subject: bus: add API calls to escape string components of objects paths --- src/shared/unit-name.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/shared/unit-name.c') diff --git a/src/shared/unit-name.c b/src/shared/unit-name.c index bc8094d112..2335463777 100644 --- a/src/shared/unit-name.c +++ b/src/shared/unit-name.c @@ -23,6 +23,7 @@ #include #include +#include "sd-bus.h" #include "path-util.h" #include "util.h" #include "unit-name.h" @@ -459,7 +460,7 @@ char *unit_dbus_path_from_name(const char *name) { assert(name); - e = bus_path_escape(name); + e = sd_bus_label_escape(name); if (!e) return NULL; @@ -474,7 +475,7 @@ int unit_name_from_dbus_path(const char *path, char **name) { if (!e) return -EINVAL; - n = bus_path_unescape(e); + n = sd_bus_label_unescape(e); if (!n) return -ENOMEM; -- cgit v1.2.3-54-g00ecf