From: nerdopolis Date: Thu, 9 Apr 2020 21:22:07 +0000 (-0400) Subject: login: Fix incorrect reporting of CanMultiSession=no on non-seat0 seats X-Git-Tag: v246-rc1~615 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa2cf64a917d31605d40d34e98ce9e2e066064fa;p=thirdparty%2Fsystemd.git login: Fix incorrect reporting of CanMultiSession=no on non-seat0 seats --- diff --git a/src/login/logind-seat.c b/src/login/logind-seat.c index 394f89dd7e0..4d51a326a2a 100644 --- a/src/login/logind-seat.c +++ b/src/login/logind-seat.c @@ -561,7 +561,8 @@ bool seat_is_seat0(Seat *s) { bool seat_can_multi_session(Seat *s) { assert(s); - return seat_has_vts(s); + /* multiple sessions are supported on all seats now */ + return true; } bool seat_can_tty(Seat *s) {