diff options
author | Matthew Miller <mattdm@mattdm.org> | 2010-08-31 00:23:34 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-31 00:23:34 +0200 |
commit | fdf20a316035779bbec469e11d73c7544acbf30f (patch) | |
tree | c99f2d7a60e5816ff554c48bcfbe497d0c22a30d /src/manager.c | |
parent | 74ac3cbd509de2f5995542aa5db39328e8cbd22a (diff) |
manager: add missing second part of s/maintenance/failed/
Diffstat (limited to 'src/manager.c')
-rw-r--r-- | src/manager.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/manager.c b/src/manager.c index eada82a248..c22aa3ecee 100644 --- a/src/manager.c +++ b/src/manager.c @@ -1397,12 +1397,12 @@ static int transaction_add_job_and_dependencies( assert(type < _JOB_TYPE_MAX); assert(unit); - if (unit->meta.load_state != UNIT_LOADED && unit->meta.load_state != UNIT_FAILED) { + if (unit->meta.load_state != UNIT_LOADED && unit->meta.load_state != UNIT_ERROR) { dbus_set_error(e, BUS_ERROR_LOAD_FAILED, "Unit %s is not loaded properly.", unit->meta.id); return -EINVAL; } - if (type != JOB_STOP && unit->meta.load_state == UNIT_FAILED) { + if (type != JOB_STOP && unit->meta.load_state == UNIT_ERROR) { dbus_set_error(e, BUS_ERROR_LOAD_FAILED, "Unit %s failed to load: %s. You might find more information in the logs.", unit->meta.id, strerror(-unit->meta.load_error)); @@ -1496,7 +1496,7 @@ static int transaction_add_isolate_jobs(Manager *m) { continue; /* No need to stop inactive jobs */ - if (UNIT_IS_INACTIVE_OR_MAINTENANCE(unit_active_state(u))) + if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u))) continue; /* Is there already something listed for this? */ @@ -2552,14 +2552,14 @@ bool manager_is_booting_or_shutting_down(Manager *m) { return false; } -void manager_reset_maintenance(Manager *m) { +void manager_reset_failed(Manager *m) { Unit *u; Iterator i; assert(m); HASHMAP_FOREACH(u, m->units, i) - unit_reset_maintenance(u); + unit_reset_failed(u); } int manager_set_console(Manager *m, const char *console) { |