From: Christian Hesse <mail@xxxxxxxx> Signed-off-by: Christian Hesse <mail@xxxxxxxx> --- term-utils/agetty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/term-utils/agetty.c b/term-utils/agetty.c index 05a269abb..b9f08728e 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -2755,7 +2755,7 @@ static void output_special_char(struct issue *ie, break; } default: - putchar(c); + putc(c, ie->output); break; } }