[Openvpn-devel] Fix typo in IPv6 address in comment.

Message ID 20180715190508.64874-1-gert@greenie.muc.de
State Superseded
Headers show
Series [Openvpn-devel] Fix typo in IPv6 address in comment. | expand

Commit Message

Gert Doering July 15, 2018, 9:05 a.m. UTC
Comment talks about ff02::1::ff00:8, correct address is ff02::1:ff00:8.

Signed-off-by: Gert Doering <gert@greenie.muc.de>
---
 src/txpath.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/src/txpath.c b/src/txpath.c
index 97b9862..6a41434 100644
--- a/src/txpath.c
+++ b/src/txpath.c
@@ -108,7 +108,7 @@  HandleIPv6NeighborDiscovery(
     // - it's either a multicast MAC, or the userland destination MAC
     // but since the TAP driver is point-to-point, all packets are "for us"
 
-    // IPv6 target address must be ff02::1::ff00:8 (multicast for
+    // IPv6 target address must be ff02::1:ff00:8 (multicast for
     // initial NS) or fe80::1 (unicast for recurrent NUD)
     if ( memcmp( ipv6->daddr, IPV6_NS_TARGET_MCAST,
         sizeof(IPV6ADDR) ) != 0 &&