Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 May 2016 03:22:14 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r299829 - head/sys/netinet6
Message-ID:  <201605150322.u4F3MEtP059073@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: markj
Date: Sun May 15 03:22:13 2016
New Revision: 299829
URL: https://svnweb.freebsd.org/changeset/base/299829

Log:
  Use Node Information flag names instead of hard-coding their values.
  
  MFC after:	1 week

Modified:
  head/sys/netinet6/icmp6.c

Modified: head/sys/netinet6/icmp6.c
==============================================================================
--- head/sys/netinet6/icmp6.c	Sun May 15 03:19:53 2016	(r299828)
+++ head/sys/netinet6/icmp6.c	Sun May 15 03:22:13 2016	(r299829)
@@ -667,7 +667,9 @@ icmp6_input(struct mbuf **mp, int *offp,
 			 * XXX: this combination of flags is pointless,
 			 * but should we keep this for compatibility?
 			 */
-			if ((V_icmp6_nodeinfo & 5) != 5)
+			if ((V_icmp6_nodeinfo & (ICMP6_NODEINFO_FQDNOK |
+			    ICMP6_NODEINFO_TMPADDROK)) !=
+			    (ICMP6_NODEINFO_FQDNOK | ICMP6_NODEINFO_TMPADDROK))
 				break;
 
 			if (code != 0)



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