aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2025-09-29 22:50:42 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2025-10-01 19:41:51 +0000
commite91fc88bca02a74ea972ebf7f66aef3a3298ad54 (patch)
tree51e864ec5ffeeb7d95e69b0ede1fb25490b0f361
parent3034fa3d4321fdc487428c9050711de9ce234567 (diff)
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.
-rw-r--r--share/man/man4/ip.42
1 files changed, 1 insertions, 1 deletions
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