diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-13 15:37:34 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-13 15:49:51 +0100 |
commit | 1433efd219a6df414a1821b3d3d70d86201ed3e4 (patch) | |
tree | cd38b60c0b82a688d126735f7c649de0db616def /src/bus-proxyd/synthesize.c | |
parent | 418e4cb07d56e365b9b77b24d3c851e85940d68b (diff) |
bus-proxy: rename synthetic_reply_return_strv() to synthetic_reply_method_return_strv()
That way it matches more closely the nomenclature of our other
success reply calls.
Diffstat (limited to 'src/bus-proxyd/synthesize.c')
-rw-r--r-- | src/bus-proxyd/synthesize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bus-proxyd/synthesize.c b/src/bus-proxyd/synthesize.c index ab73d6e170..36ffe2930e 100644 --- a/src/bus-proxyd/synthesize.c +++ b/src/bus-proxyd/synthesize.c @@ -125,7 +125,7 @@ int synthetic_reply_method_return(sd_bus_message *call, const char *types, ...) return synthetic_driver_send(call->bus, m); } -int synthetic_reply_return_strv(sd_bus_message *call, char **l) { +int synthetic_reply_method_return_strv(sd_bus_message *call, char **l) { _cleanup_bus_message_unref_ sd_bus_message *m = NULL; int r; |