From f8ee3af9fabc4369c36fdbd706a17deb246a751c Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 7 Nov 2018 13:55:06 +0100 Subject: agetty: fix output of escaped characters Signed-off-by: Christian Hesse --- term-utils/agetty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'term-utils/agetty.c') 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; } } -- cgit v1.2.3-55-g7522