diff --git a/man/systemd.xml b/man/systemd.xml index 680f800f7d..5287bdaba8 100644 --- a/man/systemd.xml +++ b/man/systemd.xml @@ -452,7 +452,7 @@ means that before executing a requested operation, systemd will verify that it makes sense, fixing it if possible, and only failing if it really cannot work. - + Note that transactions are generated independently of a unit's state at runtime, hence, for example, if a start job is requested on an already started unit, it will still generate a transaction and wake up any diff --git a/src/core/job.c b/src/core/job.c index 5210ac1ea0..cc55bd01b8 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -207,7 +207,7 @@ Job* job_install(Job *j) { job_merge_into_installed(uj, j); log_unit_debug(uj->unit, "Merged %s/%s into installed job %s/%s as %"PRIu32, - j->unit->id, job_type_to_string(j->type), uj->unit->id, + j->unit->id, job_type_to_string(j->type), uj->unit->id, job_type_to_string(uj->type), uj->id); return uj; } else {