From d7fc909db3346b58a0ecce9c18d5ae68ffe7cb8b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 24 Apr 2010 00:31:21 +0200 Subject: [PATCH] utmp: if we don't have a previous runleve, just store 0 --- utmp-wtmp.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/utmp-wtmp.c b/utmp-wtmp.c index 1650d10eb..0cc9ceca8 100644 --- a/utmp-wtmp.c +++ b/utmp-wtmp.c @@ -193,8 +193,12 @@ int utmp_put_runlevel(usec_t timestamp, int runlevel, int previous) { if (previous <= 0) { /* Find the old runlevel automatically */ - if ((r = utmp_get_runlevel(&previous, NULL)) < 0) - return r; + if ((r = utmp_get_runlevel(&previous, NULL)) < 0) { + if (r != -ESRCH) + return r; + + previous = 0; + } if (previous == runlevel) return 0; -- 2.30.2