From 14c1a16a1d85ec925e80970f7114d63b5fe0f1a9 Mon Sep 17 00:00:00 2001 From: Christian Goeschel Ndjomouo Date: Sun, 23 Nov 2025 22:29:01 -0500 Subject: [PATCH] flock: fix incomplete -n option info in usage message Signed-off-by: Christian Goeschel Ndjomouo --- sys-utils/flock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3