git: 50006d520545 - stable/12 - CMSG_DATA.3: Fix a typo in the EXAMPLES section
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 28 Oct 2022 08:59:59 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=50006d520545be6d4b0587b7fd0010e9aa7a8bf8
commit 50006d520545be6d4b0587b7fd0010e9aa7a8bf8
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-10-25 10:49:21 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-10-28 08:59:05 +0000
CMSG_DATA.3: Fix a typo in the EXAMPLES section
- s/faild/failed/
(cherry picked from commit 31c472b8a6e403e26110c9a379af45fccd6b4177)
---
share/man/man3/CMSG_DATA.3 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/man/man3/CMSG_DATA.3 b/share/man/man3/CMSG_DATA.3
index 92c5b9736da3..efdff7abae60 100644
--- a/share/man/man3/CMSG_DATA.3
+++ b/share/man/man3/CMSG_DATA.3
@@ -165,7 +165,7 @@ main()
close(hellofd[1]);
if (read(hellofd[0], buf, HELLOLEN) == -1)
- err(EX_IOERR, "faild to receive 'hello'");
+ err(EX_IOERR, "failed to receive 'hello'");
printf("parent: received '%s'\\n", buf);
break;
}