X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flogin%2Flogind-seat.c;h=ae42811dea4d12dcc3242fb5361cab4e09525424;hp=813ab153e62b94e303ea0d70540560cefa49b45e;hb=8331cb6e143dc261fd22af9a2a679196822326a9;hpb=4084669c7f802c9745bcb6bed77bdaf49ffd896d diff --git a/src/login/logind-seat.c b/src/login/logind-seat.c index 813ab153e..ae42811de 100644 --- a/src/login/logind-seat.c +++ b/src/login/logind-seat.c @@ -1,5 +1,3 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - /*** This file is part of systemd. @@ -34,6 +32,7 @@ #include "logind-seat.h" #include "mkdir.h" #include "parse-util.h" +#include "stdio-util.h" #include "string-util.h" #include "terminal-util.h" #include "util.h" @@ -182,7 +181,7 @@ static int vt_allocate(unsigned int vtnr) { assert(vtnr >= 1); - snprintf(p, sizeof(p), "/dev/tty%u", vtnr); + xsprintf(p, "/dev/tty%u", vtnr); fd = open_terminal(p, O_RDWR|O_NOCTTY|O_CLOEXEC); if (fd < 0) return -errno; @@ -369,7 +368,6 @@ int seat_active_vt_changed(Seat *s, unsigned int vtnr) { } r = seat_set_active(s, new_active); - #if 0 /// elogind does not spawn autovt manager_spawn_autovt(s->manager, vtnr); #endif // 0