diff options
author | Kristof Provost <kp@FreeBSD.org> | 2022-10-31 08:47:01 +0000 |
---|---|---|
committer | Kristof Provost <kp@FreeBSD.org> | 2022-11-08 08:54:13 +0000 |
commit | efec2d18a357e9b99147a6ed8f7578b67c7cdee7 (patch) | |
tree | 4dfb20238bc31586322299426aefe7e335ea51ba /sys/netgraph | |
parent | bf72896aae8a01b8ef56a1b75aceb065585df102 (diff) |
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)
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/ng_bridge.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |