From ab4b2499c1f9ce1c7ff89b3f3d2141f17cf20da5 Mon Sep 17 00:00:00 2001 From: lteo Date: Sat, 11 Jan 2014 04:46:15 +0000 Subject: [PATCH] Sync the comments for the M_ICMP_CSUM_* flags with their descriptions in the mbuf(9) man page. --- sys/sys/mbuf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 48fd1832e14..0239d2d4fc5 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.170 2014/01/10 00:47:17 bluhm Exp $ */ +/* $OpenBSD: mbuf.h,v 1.171 2014/01/11 04:46:15 lteo Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -208,9 +208,9 @@ struct mbuf { #define M_TCP_CSUM_IN_BAD 0x0040 /* TCP checksum bad */ #define M_UDP_CSUM_IN_OK 0x0080 /* UDP checksum verified */ #define M_UDP_CSUM_IN_BAD 0x0100 /* UDP checksum bad */ -#define M_ICMP_CSUM_OUT 0x0200 /* ICMP checksum needed */ -#define M_ICMP_CSUM_IN_OK 0x0400 /* ICMP checksum verified */ -#define M_ICMP_CSUM_IN_BAD 0x0800 /* ICMP checksum bad */ +#define M_ICMP_CSUM_OUT 0x0200 /* ICMP/ICMPv6 checksum needed */ +#define M_ICMP_CSUM_IN_OK 0x0400 /* ICMP/ICMPv6 checksum verified */ +#define M_ICMP_CSUM_IN_BAD 0x0800 /* ICMP/ICMPv6 checksum bad */ #ifdef _KERNEL #define MCS_BITS \ -- 2.20.1