From: Lennart Poettering Date: Tue, 23 Jul 2019 08:13:45 +0000 (+0200) Subject: logind: don't claim we'd preallocate VTs when we shortcut it X-Git-Tag: v243-rc1~56^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61c6e8e49c0995d92e3ded73d01e725fd1b27501;p=thirdparty%2Fsystemd.git logind: don't claim we'd preallocate VTs when we shortcut it --- diff --git a/src/login/logind-seat.c b/src/login/logind-seat.c index 9577ff86f40..094fcd668dc 100644 --- a/src/login/logind-seat.c +++ b/src/login/logind-seat.c @@ -191,14 +191,14 @@ int seat_preallocate_vts(Seat *s) { assert(s); assert(s->manager); - log_debug("Preallocating VTs..."); - if (s->manager->n_autovts <= 0) return 0; if (!seat_has_vts(s)) return 0; + log_debug("Preallocating VTs..."); + for (i = 1; i <= s->manager->n_autovts; i++) { int q;