summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-04-22 02:45:39 +0200
committerLennart Poettering <lennart@poettering.net>2012-04-22 02:45:39 +0200
commitacda6a054fb131dbab9b7b16e4148e05a03ce66b (patch)
tree283fec3bc19c6f2b684b25b22e4a1f893275983a /src/shared
parentd1122ad5e3222cc17bfb556c23273598a5fb60fa (diff)
default to v102 everywhere, instead of vt100, to synchronize with agetty
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c
index def576de21..317abb8016 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -4352,7 +4352,7 @@ bool tty_is_vc_resolve(const char *tty) {
const char *default_term_for_tty(const char *tty) {
assert(tty);
- return tty_is_vc_resolve(tty) ? "TERM=linux" : "TERM=vt100";
+ return tty_is_vc_resolve(tty) ? "TERM=linux" : "TERM=vt102";
}
bool dirent_is_file(const struct dirent *de) {