aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>2025-11-23 22:29:01 -0500
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>2025-11-23 22:29:01 -0500
commit14c1a16a1d85ec925e80970f7114d63b5fe0f1a9 (patch)
treed0bb4668b684d079a9213c6078f2598b8b4e46e9
parent21bf9f6d442e42dc62ca7905770f2429a7eb0cb9 (diff)
downloadutil-linux-14c1a16a1d85ec925e80970f7114d63b5fe0f1a9.tar.gz
flock: fix incomplete -n option info in usage message
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
-rw-r--r--sys-utils/flock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/flock.c b/sys-utils/flock.c
index fe1a71f728..4cc0610e50 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 <secs> wait for a limited amount of time\n"), stdout);
fputs(_( " -E, --conflict-exit-code <number> exit code after conflict or timeout\n"), stdout);
fputs(_( " -o, --close close file descriptor before running command\n"), stdout);