Module Name: src
Committed By: christos
Date: Sun Oct 18 14:34:39 UTC 2020
Modified Files:
src/sys/modules/npf: Makefile
Log Message:
Avoid alignment of packed member
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/modules/npf/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/modules/npf/Makefile
diff -u src/sys/modules/npf/Makefile:1.25 src/sys/modules/npf/Makefile:1.26
--- src/sys/modules/npf/Makefile:1.25 Thu Sep 26 14:45:00 2019
+++ src/sys/modules/npf/Makefile Sun Oct 18 10:34:39 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2019/09/26 18:45:00 christos Exp $
+# $NetBSD: Makefile,v 1.26 2020/10/18 14:34:39 christos Exp $
#
# Public Domain.
#
@@ -21,4 +21,6 @@ SRCS+= nvlist.c nvpair.c nv_kern_netbsd
CPPFLAGS+= -DINET6
CPPFLAGS+= -I${S}/external/bsd/libnv/dist
+COPTS.npf_inet.c += -Wno-error=address-of-packed-member
+
.include <bsd.kmodule.mk>