diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-16 14:01:55 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-16 14:01:55 +0200 |
commit | 18c78fb1af5415bb6f87d9c7cae1f9c60e14ae24 (patch) | |
tree | 4ac546279d28fff34a11ad5d43dfd4b73fa6f087 /src/timer.c | |
parent | 8c47c7325fa1ab72febf807f8831ff24c75fbf45 (diff) |
typo: the correct spelling is maintenance not maintainance
Diffstat (limited to 'src/timer.c')
-rw-r--r-- | src/timer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/timer.c b/src/timer.c index b025051f2b..7bf2d10238 100644 --- a/src/timer.c +++ b/src/timer.c @@ -31,7 +31,7 @@ static const UnitActiveState state_translation_table[_TIMER_STATE_MAX] = { [TIMER_WAITING] = UNIT_ACTIVE, [TIMER_RUNNING] = UNIT_ACTIVE, [TIMER_ELAPSED] = UNIT_ACTIVE, - [TIMER_MAINTAINANCE] = UNIT_INACTIVE + [TIMER_MAINTENANCE] = UNIT_INACTIVE }; static void timer_init(Unit *u) { @@ -167,7 +167,7 @@ static void timer_enter_dead(Timer *t, bool success) { if (!success) t->failure = true; - timer_set_state(t, t->failure ? TIMER_MAINTAINANCE : TIMER_DEAD); + timer_set_state(t, t->failure ? TIMER_MAINTENANCE : TIMER_DEAD); } static void timer_enter_waiting(Timer *t, bool initial) { @@ -273,7 +273,7 @@ static int timer_start(Unit *u) { Timer *t = TIMER(u); assert(t); - assert(t->state == TIMER_DEAD || t->state == TIMER_MAINTAINANCE); + assert(t->state == TIMER_DEAD || t->state == TIMER_MAINTENANCE); if (t->unit->meta.load_state != UNIT_LOADED) return -ENOENT; @@ -409,7 +409,7 @@ void timer_unit_notify(Unit *u, UnitActiveState new_state) { break; case TIMER_DEAD: - case TIMER_MAINTAINANCE: + case TIMER_MAINTENANCE: ; default: @@ -428,7 +428,7 @@ static const char* const timer_state_table[_TIMER_STATE_MAX] = { [TIMER_WAITING] = "waiting", [TIMER_RUNNING] = "running", [TIMER_ELAPSED] = "elapsed", - [TIMER_MAINTAINANCE] = "maintainance" + [TIMER_MAINTENANCE] = "maintenance" }; DEFINE_STRING_TABLE_LOOKUP(timer_state, TimerState); |