forked from pool/util-linux
Stanislav Brabec
bb4a013d42
- agetty: Fixes for reload issue only if it is really needed (bsc#1085196, boo#1120298, util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). OBS-URL: https://build.opensuse.org/request/show/662937 OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=391
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
|
|
|