From: Christian Goeschel Ndjomouo Date: Mon, 24 Nov 2025 03:51:34 +0000 (-0500) Subject: lslogins: fix incomplete option info in usage message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09330dfe53260b89293ed9f9ed86db6efbb3f932;p=thirdparty%2Futil-linux.git lslogins: fix incomplete option info in usage message Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/login-utils/lslogins.c b/login-utils/lslogins.c index 90db60cbc..2134d957d 100644 --- a/login-utils/lslogins.c +++ b/login-utils/lslogins.c @@ -1582,9 +1582,11 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -z, --print0 delimit user entries with a nul character\n"), out); fputs(_(" --wtmp-file set an alternate path for wtmp\n"), out); fputs(_(" --btmp-file set an alternate path for btmp\n"), out); - fputs(_(" --lastlog set an alternate path for lastlog\n"), out); + fputs(_(" --lastlog-file \n" + " set an alternate path for lastlog\n"), out); #ifdef HAVE_LIBLASTLOG2 - fputs(_(" --lastlog2 set an alternate path for lastlog2\n"), out); + fputs(_(" --lastlog2-file \n" + " set an alternate path for lastlog2\n"), out); #endif fputs(USAGE_SEPARATOR, out); /* FIXME: Replace with USAGE_LIST_COLUMNS_OPTION() macro from include/c.h */