Date: Tue, 8 Nov 2022 12:37:16 GMT From: Kristof Provost <kp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: efec2d18a357 - stable/13 - netgraph/ng_bridge: add missing array terminator Message-ID: <202211081237.2A8CbGQW044267@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=efec2d18a357e9b99147a6ed8f7578b67c7cdee7 commit efec2d18a357e9b99147a6ed8f7578b67c7cdee7 Author: Kristof Provost <kp@FreeBSD.org> AuthorDate: 2022-10-31 08:47:01 +0000 Commit: Kristof Provost <kp@FreeBSD.org> CommitDate: 2022-11-08 08:54:13 +0000 netgraph/ng_bridge: add missing array terminator PR: 267457 Reported by: Robert Morris <rtm@lcs.mit.edu> MFC after: 1 week (cherry picked from commit 23559c9d0dc2fb81115bc02c33a0103219f3fb55) --- sys/netgraph/ng_bridge.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/netgraph/ng_bridge.h b/sys/netgraph/ng_bridge.h index 4fb3e124637e..56daaa163da7 100644 --- a/sys/netgraph/ng_bridge.h +++ b/sys/netgraph/ng_bridge.h @@ -191,6 +191,7 @@ struct ng_bridge_move_host { #define NG_BRIDGE_MOVE_HOST_TYPE_INFO(entype) { \ { "addr", (entype) }, \ { "hook", &ng_parse_hookbuf_type }, \ + { NULL } \ } /* Netgraph control messages */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211081237.2A8CbGQW044267>