diff options
author | Ivan Kruglov <mail@ikruglov.com> | 2024-10-11 16:26:38 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-10-21 17:08:14 +0200 |
commit | d8964f9d4d7947d5fa9367f95a4e1f3c223beecf (patch) | |
tree | 289d196935c1a169407cdffe98876bde58048169 /src/machine/machined-dbus.c | |
parent | Merge pull request #34403 from poettering/askpw-per-user (diff) | |
download | systemd-d8964f9d4d7947d5fa9367f95a4e1f3c223beecf.tar.xz systemd-d8964f9d4d7947d5fa9367f95a4e1f3c223beecf.zip |
machine: rework Operation logic to reuse in varlink interface
Diffstat (limited to 'src/machine/machined-dbus.c')
-rw-r--r-- | src/machine/machined-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machined-dbus.c b/src/machine/machined-dbus.c index 730b436545..f4915f67da 100644 --- a/src/machine/machined-dbus.c +++ b/src/machine/machined-dbus.c @@ -813,7 +813,7 @@ static int method_clean_pool(sd_bus_message *message, void *userdata, sd_bus_err /* The clean-up might take a while, hence install a watch on the child and return */ - r = operation_new(m, NULL, child, message, errno_pipe_fd[0], &operation); + r = operation_new_with_bus_reply(m, /* machine= */ NULL, child, message, errno_pipe_fd[0], &operation); if (r < 0) { (void) sigkill_wait(child); return r; |