From: Christian Goeschel Ndjomouo Date: Mon, 24 Nov 2025 03:29:01 +0000 (-0500) Subject: flock: fix incomplete -n option info in usage message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14c1a16a1d85ec925e80970f7114d63b5fe0f1a9;p=thirdparty%2Futil-linux.git flock: fix incomplete -n option info in usage message Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/sys-utils/flock.c b/sys-utils/flock.c index fe1a71f72..4cc0610e5 100644 --- a/sys-utils/flock.c +++ b/sys-utils/flock.c @@ -75,7 +75,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_( " -s, --shared get a shared lock\n"), stdout); fputs(_( " -x, --exclusive get an exclusive lock (default)\n"), stdout); fputs(_( " -u, --unlock remove a lock\n"), stdout); - fputs(_( " -n, --nonblock fail rather than wait\n"), stdout); + fputs(_( " -n, --nb, --nonblocking fail rather than wait\n"), stdout); fputs(_( " -w, --timeout wait for a limited amount of time\n"), stdout); fputs(_( " -E, --conflict-exit-code exit code after conflict or timeout\n"), stdout); fputs(_( " -o, --close close file descriptor before running command\n"), stdout);