diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2013-09-17 17:39:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-09-17 13:47:19 -0500 |
commit | 92432fcc7f3a0320c07e99c5d395568a3aa216b6 (patch) | |
tree | 0e9ccd1b9571c54764d55991b9c10f7f51a80f13 /src/login/logind-session.c | |
parent | 3331234adc763378a5e48e7ad6dc2bf9657aa535 (diff) |
logind: rename vtconsole to seat0
The seat->vtconsole member always points to the default seat seat0. Even
if VTs are disabled, it's used as default seat. Therefore, rename it to
seat0 to correctly state what it is.
This also changes the seat files in /run from IS_VTCONSOLE to IS_SEAT0. It
wasn't used by any code, yet, so this seems fine.
While we are at it, we also remove every "if (s->vtconsole)" as this
pointer is always valid!
Diffstat (limited to 'src/login/logind-session.c')
-rw-r--r-- | src/login/logind-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/logind-session.c b/src/login/logind-session.c index fa8b5157e8..407429c48a 100644 --- a/src/login/logind-session.c +++ b/src/login/logind-session.c @@ -372,7 +372,7 @@ int session_activate(Session *s) { if (s->seat->active == s) return 0; - assert(seat_is_vtconsole(s->seat)); + assert(seat_is_seat0(s->seat)); return chvt(s->vtnr); } |