From: Yu Watanabe Date: Fri, 19 Jul 2019 02:14:51 +0000 (+0900) Subject: bus-util: make map_basic handle SD_BUS_TYPE_OBJECT_PATH type X-Git-Tag: v244-rc1~172^2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16a8f172b6ff5499f568ebd890c2e9fb61abc219;p=thirdparty%2Fsystemd.git bus-util: make map_basic handle SD_BUS_TYPE_OBJECT_PATH type --- diff --git a/src/shared/bus-util.c b/src/shared/bus-util.c index e9b0b8a99d9..50b0742c976 100644 --- a/src/shared/bus-util.c +++ b/src/shared/bus-util.c @@ -1103,7 +1103,8 @@ static int map_basic(sd_bus *bus, const char *member, sd_bus_message *m, unsigne switch (type) { - case SD_BUS_TYPE_STRING: { + case SD_BUS_TYPE_STRING: + case SD_BUS_TYPE_OBJECT_PATH: { const char **p = userdata; const char *s;