summaryrefslogtreecommitdiffstats
path: root/term-utils
diff options
context:
space:
mode:
authorChristian Hesse2018-11-07 13:55:06 +0100
committerKarel Zak2018-11-12 11:32:28 +0100
commitf8ee3af9fabc4369c36fdbd706a17deb246a751c (patch)
tree37ff7649a2af0108f1c3898c73a35e15ecd4d262 /term-utils
parentlibblkid: fix detection of dm-integrity superblock (diff)
downloadkernel-qcow2-util-linux-f8ee3af9fabc4369c36fdbd706a17deb246a751c.tar.gz
kernel-qcow2-util-linux-f8ee3af9fabc4369c36fdbd706a17deb246a751c.tar.xz
kernel-qcow2-util-linux-f8ee3af9fabc4369c36fdbd706a17deb246a751c.zip
agetty: fix output of escaped characters
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'term-utils')
-rw-r--r--term-utils/agetty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/term-utils/agetty.c b/term-utils/agetty.c
index 759cea5b8..615db2c78 100644
--- a/term-utils/agetty.c
+++ b/term-utils/agetty.c
@@ -2759,7 +2759,7 @@ static void output_special_char(struct issue *ie,
}
#endif
default:
- putchar(c);
+ putc(c, ie->output);
break;
}
}