forked from pool/util-linux
27 lines
636 B
Diff
27 lines
636 B
Diff
|
From f8ee3af9fabc4369c36fdbd706a17deb246a751c Mon Sep 17 00:00:00 2001
|
||
|
From: Christian Hesse <mail@eworm.de>
|
||
|
Date: Wed, 7 Nov 2018 13:55:06 +0100
|
||
|
Subject: [PATCH] agetty: fix output of escaped characters
|
||
|
|
||
|
Signed-off-by: Christian Hesse <mail@eworm.de>
|
||
|
---
|
||
|
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 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;
|
||
|
}
|
||
|
}
|
||
|
--
|
||
|
2.19.1
|
||
|
|