svn commit: r299829 - head/sys/netinet6
Mark Johnston
markj at FreeBSD.org
Sun May 15 03:22:15 UTC 2016
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)
More information about the svn-src-head
mailing list