git: e91fc88bca02 - main - ip(4): fix description of struct ip_mreqn
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 01 Oct 2025 21:24:23 UTC
The branch main has been updated by glebius:
URL: https://cgit.FreeBSD.org/src/commit/?id=e91fc88bca02a74ea972ebf7f66aef3a3298ad54
commit e91fc88bca02a74ea972ebf7f66aef3a3298ad54
Author: Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2025-09-29 22:50:42 +0000
Commit: Gleb Smirnoff <glebius@FreeBSD.org>
CommitDate: 2025-10-01 19:41:51 +0000
ip(4): fix description of struct ip_mreqn
This is a minor bug, since the kernel ignores imr_address and applications
are not supposed to initialize it.
---
share/man/man4/ip.4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/man/man4/ip.4 b/share/man/man4/ip.4
index c52715a43380..fb5ea398c840 100644
--- a/share/man/man4/ip.4
+++ b/share/man/man4/ip.4
@@ -575,7 +575,7 @@ is the following structure:
.Bd -literal
struct ip_mreqn {
struct in_addr imr_multiaddr; /* IP multicast address of group */
- struct in_addr imr_interface; /* local IP address of interface */
+ struct in_addr imr_address; /* local IP address of interface */
int imr_ifindex; /* interface index */
}
.Ed