aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenno Schulenberg <bensberg@telfort.nl>2024-03-26 16:48:22 +0100
committerKarel Zak <kzak@redhat.com>2024-04-29 14:32:03 +0200
commit926b6077333554924756ba648c9df38c803c48bc (patch)
tree949f5f47ed3bfff114c480169a38c87fa2e44fc4
parente67ad1d7c1ed470b4c0dbb4d0b28ae8975883684 (diff)
downloadutil-linux-926b6077333554924756ba648c9df38c803c48bc.tar.gz
lastlog2: begin descriptions of options with a lowercase letter
These descriptions are not full sentences and do not end with a period, so they should not start with a capital either. (cherry picked from commit 991cb1568a7b3770e33d68c4df49a97068ac8588)
-rw-r--r--misc-utils/lastlog2.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/misc-utils/lastlog2.c b/misc-utils/lastlog2.c
index 2b8365b402..7e511b036b 100644
--- a/misc-utils/lastlog2.c
+++ b/misc-utils/lastlog2.c
@@ -108,15 +108,15 @@ static void __attribute__((__noreturn__)) usage(void)
fprintf(output, _(" %s [options]\n"), program_invocation_short_name);
fputs(USAGE_OPTIONS, output);
- fputs(_(" -b, --before DAYS Print only records older than DAYS\n"), output);
- fputs(_(" -C, --clear Clear record of a user (requires -u)\n"), output);
- fputs(_(" -d, --database FILE Use FILE as lastlog2 database\n"), output);
- fputs(_(" -i, --import FILE Import data from old lastlog file\n"), output);
- fputs(_(" -r, --rename NEWNAME Rename existing user to NEWNAME (requires -u)\n"), output);
- fputs(_(" -s, --service Display PAM service\n"), output);
- fputs(_(" -S, --set Set lastlog record to current time (requires -u)\n"), output);
- fputs(_(" -t, --time DAYS Print only lastlog records more recent than DAYS\n"), output);
- fputs(_(" -u, --user LOGIN Print lastlog record of the specified LOGIN\n"), output);
+ fputs(_(" -b, --before DAYS print only records older than DAYS\n"), output);
+ fputs(_(" -C, --clear clear record of a user (requires -u)\n"), output);
+ fputs(_(" -d, --database FILE use FILE as lastlog2 database\n"), output);
+ fputs(_(" -i, --import FILE import data from old lastlog file\n"), output);
+ fputs(_(" -r, --rename NEWNAME rename existing user to NEWNAME (requires -u)\n"), output);
+ fputs(_(" -s, --service display PAM service\n"), output);
+ fputs(_(" -S, --set set lastlog record to current time (requires -u)\n"), output);
+ fputs(_(" -t, --time DAYS print only lastlog records more recent than DAYS\n"), output);
+ fputs(_(" -u, --user LOGIN print lastlog record of the specified LOGIN\n"), output);
fputs(USAGE_SEPARATOR, output);
fprintf(output, USAGE_HELP_OPTIONS(25));