From: Christian Hesse Date: Wed, 7 Nov 2018 12:55:06 +0000 (+0100) Subject: agetty: fix output of escaped characters X-Git-Tag: v2.33.1~31 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=96b5408fe05be9e67ea7ef624a498ba5d02af9f5;p=thirdparty%2Futil-linux.git agetty: fix output of escaped characters Signed-off-by: Christian Hesse --- diff --git a/term-utils/agetty.c b/term-utils/agetty.c index 759cea5b87..615db2c787 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; } }