Index: dist/print-icmp6.c =================================================================== RCS file: /cvsroot/src/external/bsd/tcpdump/dist/print-icmp6.c,v retrieving revision 1.12 diff -u -r1.12 print-icmp6.c --- dist/print-icmp6.c 1 Oct 2019 16:06:16 -0000 1.12 +++ dist/print-icmp6.c 24 Feb 2020 18:22:50 -0000 @@ -1419,6 +1419,7 @@ ND_PRINT((ndo,"addr: %s", ip6addr_string(ndo, &mp->mld6_addr))); } +UNALIGNED_OK static void mldv2_report_print(netdissect_options *ndo, const u_char *bp, u_int len) { Index: dist/print-ntp.c =================================================================== RCS file: /cvsroot/src/external/bsd/tcpdump/dist/print-ntp.c,v retrieving revision 1.7 diff -u -r1.7 print-ntp.c --- dist/print-ntp.c 5 Feb 2017 04:05:05 -0000 1.7 +++ dist/print-ntp.c 24 Feb 2020 18:22:50 -0000 @@ -205,6 +205,7 @@ /* * Print ntp requests */ +UNALIGNED_OK void ntp_print(netdissect_options *ndo, register const u_char *cp, u_int length) @@ -429,4 +430,3 @@ f = (uint32_t)(ff * 1000000000.0); /* treat fraction as parts per billion */ ND_PRINT((ndo, "%s%d.%09d", signbit ? "-" : "+", i, f)); } - Index: dist/print-ospf6.c =================================================================== RCS file: /cvsroot/src/external/bsd/tcpdump/dist/print-ospf6.c,v retrieving revision 1.9 diff -u -r1.9 print-ospf6.c --- dist/print-ospf6.c 1 Oct 2019 16:06:16 -0000 1.9 +++ dist/print-ospf6.c 24 Feb 2020 18:22:50 -0000 @@ -388,6 +388,7 @@ ipaddr_string(ndo, ls_stateid))); } +UNALIGNED_OK static int ospf6_print_lshdr(netdissect_options *ndo, register const struct lsa6_hdr *lshp, const u_char *dataend)