aboutsummaryrefslogtreecommitdiff
path: root/loginutils/adduser.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/adduser.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/adduser.c')
-rw-r--r--loginutils/adduser.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/loginutils/adduser.c b/loginutils/adduser.c
index e2818f852..ef18278ac 100644
--- a/loginutils/adduser.c
+++ b/loginutils/adduser.c
@@ -11,7 +11,7 @@
//config: bool "adduser (15 kb)"
//config: default y
//config: help
-//config: Utility for creating a new user account.
+//config: Utility for creating a new user account.
//config:
//config:config FEATURE_ADDUSER_LONG_OPTIONS
//config: bool "Enable long options"
@@ -23,19 +23,19 @@
//config: default n
//config: depends on ADDUSER || ADDGROUP
//config: help
-//config: Enable sanity check on user and group names in adduser and addgroup.
-//config: To avoid problems, the user or group name should consist only of
-//config: letters, digits, underscores, periods, at signs and dashes,
-//config: and not start with a dash (as defined by IEEE Std 1003.1-2001).
-//config: For compatibility with Samba machine accounts "$" is also supported
-//config: at the end of the user or group name.
+//config: Enable sanity check on user and group names in adduser and addgroup.
+//config: To avoid problems, the user or group name should consist only of
+//config: letters, digits, underscores, periods, at signs and dashes,
+//config: and not start with a dash (as defined by IEEE Std 1003.1-2001).
+//config: For compatibility with Samba machine accounts "$" is also supported
+//config: at the end of the user or group name.
//config:
//config:config LAST_ID
//config: int "Last valid uid or gid for adduser and addgroup"
//config: depends on ADDUSER || ADDGROUP
//config: default 60000
//config: help
-//config: Last valid uid or gid for adduser and addgroup
+//config: Last valid uid or gid for adduser and addgroup
//config:
//config:config FIRST_SYSTEM_ID
//config: int "First valid system uid or gid for adduser and addgroup"
@@ -43,7 +43,7 @@
//config: range 0 LAST_ID
//config: default 100
//config: help
-//config: First valid system uid or gid for adduser and addgroup
+//config: First valid system uid or gid for adduser and addgroup
//config:
//config:config LAST_SYSTEM_ID
//config: int "Last valid system uid or gid for adduser and addgroup"
@@ -51,7 +51,7 @@
//config: range FIRST_SYSTEM_ID LAST_ID
//config: default 999
//config: help
-//config: Last valid system uid or gid for adduser and addgroup
+//config: Last valid system uid or gid for adduser and addgroup
//applet:IF_ADDUSER(APPLET(adduser, BB_DIR_USR_SBIN, BB_SUID_DROP))