Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Oct 2025 21:24:23 GMT
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: e91fc88bca02 - main - ip(4): fix description of struct ip_mreqn
Message-ID:  <202510012124.591LONNN063960@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202510012124.591LONNN063960>