From fed90174ff5eb8dd46c521c67ea0b387f150683b Mon Sep 17 00:00:00 2001 From: zxbv3 Date: Sun, 15 Mar 2026 16:35:30 +0000 Subject: [PATCH] crypto_request.9: Fix typo on crypto_initreq arguments The function signature of `crypto_initreq()` was incorrectly documented. Signed-off-by: Zixu Wu Reviewed by: ziaee, pouria Pull Request: https://github.com/freebsd/freebsd-src/pull/2077 --- share/man/man9/crypto_request.9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/man/man9/crypto_request.9 b/share/man/man9/crypto_request.9 index 77e6a60b46d..80c0e5eceaa 100644 --- a/share/man/man9/crypto_request.9 +++ b/share/man/man9/crypto_request.9 @@ -51,7 +51,7 @@ .Ft "struct cryptop *" .Fn crypto_getreq "crypto_session_t cses" "int how" .Ft void -.Fn crypto_initreq "crypto_session_t cses" "int how" +.Fn crypto_initreq "struct cryptop *crp" "crypto_session_t cses" .Ft void .Fn crypto_use_buf "struct cryptop *crp" "void *buf" "int len" .Ft void