agetty: fix output of escaped characters

Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
Christian Hesse 2018-11-07 13:55:06 +01:00 committed by Karel Zak
parent 1741d2ea57
commit f8ee3af9fa
1 changed files with 1 additions and 1 deletions

View File

@ -2759,7 +2759,7 @@ static void output_special_char(struct issue *ie,
}
#endif
default:
putchar(c);
putc(c, ie->output);
break;
}
}