swap: properly enter maintenance mode on failure

This commit is contained in:
Lennart Poettering 2010-08-09 22:44:52 +02:00
parent 69dd2852bb
commit 76143638fd
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ static void swap_dump(Unit *u, FILE *f, const char *prefix) {
static void swap_enter_dead(Swap *s, bool success) {
assert(s);
swap_set_state(s, success ? SWAP_MAINTENANCE : SWAP_DEAD);
swap_set_state(s, success ? SWAP_DEAD : SWAP_MAINTENANCE);
}
static int swap_start(Unit *u) {