summaryrefslogtreecommitdiffstats
path: root/login-utils/su-common.c
diff options
context:
space:
mode:
authorSami Kerola2013-01-23 00:27:03 +0100
committerKarel Zak2013-01-25 16:40:04 +0100
commit09f5902e1e99a4ad9476e8bb04d4ca150ce0298a (patch)
treed387b3683e38720af3cdc5341c34180b2ce95a6b /login-utils/su-common.c
parentpartx: make usage() translator friendly (diff)
downloadkernel-qcow2-util-linux-09f5902e1e99a4ad9476e8bb04d4ca150ce0298a.tar.gz
kernel-qcow2-util-linux-09f5902e1e99a4ad9476e8bb04d4ca150ce0298a.tar.xz
kernel-qcow2-util-linux-09f5902e1e99a4ad9476e8bb04d4ca150ce0298a.zip
su-common: make usage() translator friendly
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'login-utils/su-common.c')
-rw-r--r--login-utils/su-common.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/login-utils/su-common.c b/login-utils/su-common.c
index 9daae721a..47e05ff7d 100644
--- a/login-utils/su-common.c
+++ b/login-utils/su-common.c
@@ -646,18 +646,16 @@ usage (int status)
fputs(USAGE_OPTIONS, stdout);
}
- fputs (_(
- " -m, -p, --preserve-environment do not reset environment variables\n"
- " -g, --group <group> specify the primary group\n"
- " -G, --supp-group <group> specify a supplemental group\n\n"), stdout);
-
- fputs (_(
- " -, -l, --login make the shell a login shell\n"
- " -c, --command <command> pass a single command to the shell with -c\n"
- " --session-command <command> pass a single command to the shell with -c\n"
- " and do not create a new session\n"
- " -f, --fast pass -f to the shell (for csh or tcsh)\n"
- " -s, --shell <shell> run shell if /etc/shells allows it\n"), stdout);
+ fputs (_(" -m, -p, --preserve-environment do not reset environment variables\n"), stdout);
+ fputs (_(" -g, --group <group> specify the primary group\n"), stdout);
+ fputs (_(" -G, --supp-group <group> specify a supplemental group\n\n"), stdout);
+
+ fputs (_(" -, -l, --login make the shell a login shell\n"), stdout);
+ fputs (_(" -c, --command <command> pass a single command to the shell with -c\n"), stdout);
+ fputs (_(" --session-command <command> pass a single command to the shell with -c\n"), stdout);
+ fputs (_(" and do not create a new session\n"), stdout);
+ fputs (_(" -f, --fast pass -f to the shell (for csh or tcsh)\n"), stdout);
+ fputs (_(" -s, --shell <shell> run shell if /etc/shells allows it\n"), stdout);
fputs(USAGE_SEPARATOR, stdout);
fputs(USAGE_HELP, stdout);