summaryrefslogtreecommitdiff
path: root/src/shared/bus-map-properties.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-06-13 11:17:17 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-06-30 10:35:27 +0200
commitcf2edf1d5cb9611c53d08b1f04059b2265c0578c (patch)
treea40a363215b6784db2cad686d8a83c12506f1595 /src/shared/bus-map-properties.c
parent944c1243307ce002be2b297c45c59cb8d2c13c3a (diff)
downloadsystemd-cf2edf1d5cb9611c53d08b1f04059b2265c0578c.tar.gz
sd-bus: export sd_bus_message_read_strv_extend()
The same story as before: it's a useful helper, other uses of the library are likely to find it useful.
Diffstat (limited to 'src/shared/bus-map-properties.c')
-rw-r--r--src/shared/bus-map-properties.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/bus-map-properties.c b/src/shared/bus-map-properties.c
index 84608567aa..e5e8933963 100644
--- a/src/shared/bus-map-properties.c
+++ b/src/shared/bus-map-properties.c
@@ -30,7 +30,7 @@ int bus_map_strv_sort(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus
char ***p = userdata;
int r;
- r = bus_message_read_strv_extend(m, &l);
+ r = sd_bus_message_read_strv_extend(m, &l);
if (r < 0)
return r;
@@ -75,7 +75,7 @@ static int map_basic(sd_bus *bus, const char *member, sd_bus_message *m, unsigne
_cleanup_strv_free_ char **l = NULL;
char ***p = userdata;
- r = bus_message_read_strv_extend(m, &l);
+ r = sd_bus_message_read_strv_extend(m, &l);
if (r < 0)
return r;