diff options
| author | zxbv3 <zx@bv3.dev> | 2026-03-15 16:35:30 +0000 |
|---|---|---|
| committer | Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org> | 2026-03-16 09:54:13 +0000 |
| commit | fed90174ff5eb8dd46c521c67ea0b387f150683b (patch) | |
| tree | 119c13a6b6bbd3e5ced00fc9537d872cc4f44737 | |
| parent | 283ef95d1677b873903f8b8fa077fbfa3a5e0036 (diff) | |
crypto_request.9: Fix typo on crypto_initreq arguments
The function signature of `crypto_initreq()` was
incorrectly documented.
Signed-off-by: Zixu Wu <zx@bv3.dev>
Reviewed by: ziaee, pouria
Pull Request: https://github.com/freebsd/freebsd-src/pull/2077
| -rw-r--r-- | share/man/man9/crypto_request.9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man9/crypto_request.9 b/share/man/man9/crypto_request.9 index 77e6a60b46de..80c0e5eceaa7 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 |
