1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-06 17:18:12 +03:00

machined: properly propagate long-running operation errors

Actually initialize the "error" structure with the error we got
This commit is contained in:
Lennart Poettering 2017-02-13 19:39:31 +01:00
parent d01cd40196
commit 3aca8326bd

View File

@ -61,8 +61,10 @@ static int operation_done(sd_event_source *s, const siginfo_t *si, void *userdat
} else {
/* The default operation when done is to simply return an error on failure or an empty success
* message on success. */
if (r < 0)
if (r < 0) {
sd_bus_error_set_errno(&error, r);
goto fail;
}
r = sd_bus_reply_method_return(o->message, NULL);
if (r < 0)