From: Christian Goeschel Ndjomouo Date: Sun, 21 Dec 2025 21:38:26 +0000 (-0500) Subject: flock: resolve consistency issue in the usage message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c22991a2f70c12b70094ece424bc9b42aa2bfd5;p=thirdparty%2Futil-linux.git flock: resolve consistency issue in the usage message Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/sys-utils/flock.c b/sys-utils/flock.c index 642e026c8..cfd7686d7 100644 --- a/sys-utils/flock.c +++ b/sys-utils/flock.c @@ -82,6 +82,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_( " -o, --close close file descriptor before running command\n"), stdout); fputs(_( " -c, --command run a single command string through the shell\n"), stdout); fputs(_( " -F, --no-fork execute command without forking\n"), stdout); + fputs(_( " --wait same as --timeout\n"), stdout); fputs(_( " --fcntl use fcntl(F_OFD_SETLK) rather than flock()\n"), stdout); fputs(_( " --start starting offset for lock (implies --fcntl)\n"), stdout); fputs(_( " --length number of bytes to lock (implies --fcntl)\n"), stdout);