diff mbox series

[4/5] man/io_uring_prep_cmd: Fix argument name

Message ID 20231020133917.953642-5-leitao@debian.org (mailing list archive)
State New
Headers show
Series liburing: Add {g,s}etsockopt command support | expand

Commit Message

Breno Leitao Oct. 20, 2023, 1:39 p.m. UTC
io_uring_prep_cmd(3) documents that one of the argument is SIOCOUTQ,
while, in fact, it is called `SOCKET_URING_OP_SIOCOUTQ`.

Fix the argument name, by replacing SIOCOUTQ to
SOCKET_URING_OP_SIOCOUTQ.

Fixes: 2459fef09411 ("io_uring_prep_cmd: Create a new helper for command ops")
Signed-off-by: Breno Leitao <leitao@debian.org>
---
 man/io_uring_prep_cmd.3 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/man/io_uring_prep_cmd.3 b/man/io_uring_prep_cmd.3
index 01b48da..d6ec909 100644
--- a/man/io_uring_prep_cmd.3
+++ b/man/io_uring_prep_cmd.3
@@ -55,7 +55,7 @@  For more information about this command, please check
 
 
 .TP
-.B SIOCOUTQ
+.B SOCKET_URING_OP_SIOCOUTQ
 Returns the amount of unsent data in the socket send queue.
 The socket must not be in LISTEN state, otherwise an error
 .B -EINVAL