aboutsummaryrefslogtreecommitdiff
path: root/loginutils/getty.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /loginutils/getty.c
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
downloadbusybox-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils/getty.c')
-rw-r--r--loginutils/getty.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c
index d38471a42..fd5116d08 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -26,19 +26,19 @@
//config: default y
//config: select FEATURE_SYSLOG
//config: help
-//config: getty lets you log in on a tty. It is normally invoked by init.
+//config: getty lets you log in on a tty. It is normally invoked by init.
//config:
-//config: Note that you can save a few bytes by disabling it and
-//config: using login applet directly.
-//config: If you need to reset tty attributes before calling login,
-//config: this script approximates getty:
+//config: Note that you can save a few bytes by disabling it and
+//config: using login applet directly.
+//config: If you need to reset tty attributes before calling login,
+//config: this script approximates getty:
//config:
-//config: exec </dev/$1 >/dev/$1 2>&1 || exit 1
-//config: reset
-//config: stty sane; stty ispeed 38400; stty ospeed 38400
-//config: printf "%s login: " "`hostname`"
-//config: read -r login
-//config: exec /bin/login "$login"
+//config: exec </dev/$1 >/dev/$1 2>&1 || exit 1
+//config: reset
+//config: stty sane; stty ispeed 38400; stty ospeed 38400
+//config: printf "%s login: " "`hostname`"
+//config: read -r login
+//config: exec /bin/login "$login"
//applet:IF_GETTY(APPLET(getty, BB_DIR_SBIN, BB_SUID_DROP))