diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2018-11-30 09:28:35 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2018-11-30 09:28:35 +0000 |
commit | 090ea803ae872def467041276bcecf9a050d651e (patch) | |
tree | 3fb62921c6bb0f04a2790c9f31af3fe5817ea8ef | |
parent | baa7022bbbc86afa06118c281329cff759191bd7 (diff) |
MH_ALIGN -> m_align
OK bluhm@
-rw-r--r-- | sys/netinet6/mld6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/mld6.c b/sys/netinet6/mld6.c index 131cd7e1a83..2e386293d39 100644 --- a/sys/netinet6/mld6.c +++ b/sys/netinet6/mld6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mld6.c,v 1.55 2017/10/29 14:56:36 florian Exp $ */ +/* $OpenBSD: mld6.c,v 1.56 2018/11/30 09:28:34 claudio Exp $ */ /* $KAME: mld6.c,v 1.26 2001/02/16 14:50:35 itojun Exp $ */ /* @@ -418,7 +418,7 @@ mld6_sendpkt(struct in6_multi *in6m, int type, const struct in6_addr *dst) mh->m_pkthdr.ph_rtableid = ifp->if_rdomain; mh->m_pkthdr.len = sizeof(struct ip6_hdr) + sizeof(struct mld_hdr); mh->m_len = sizeof(struct ip6_hdr); - MH_ALIGN(mh, sizeof(struct ip6_hdr)); + m_align(mh, sizeof(struct ip6_hdr)); /* fill in the ip6 header */ ip6 = mtod(mh, struct ip6_hdr *); |