diff options
author | Reuben Dowle <reuben.dowle@4rf.com> | 2021-03-24 20:08:08 +0100 |
---|---|---|
committer | Reuben Dowle <reuben.dowle@4rf.com> | 2021-04-05 23:23:42 +0200 |
commit | 494631615042e6cd07dfba23ddac669b61e0369e (patch) | |
tree | 47f2f77ab1393b009a2e3db84d700738370b975c /nhrpd | |
parent | nhrpd: Improve debug message for multicast interception (diff) | |
download | frr-494631615042e6cd07dfba23ddac669b61e0369e.tar.xz frr-494631615042e6cd07dfba23ddac669b61e0369e.zip |
nhrpd: Add missing semicolon
Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com>
Diffstat (limited to 'nhrpd')
-rw-r--r-- | nhrpd/nhrp_multicast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_multicast.c b/nhrpd/nhrp_multicast.c index d14045525..3df91492a 100644 --- a/nhrpd/nhrp_multicast.c +++ b/nhrpd/nhrp_multicast.c @@ -28,7 +28,7 @@ #include "znl.h" #include "os.h" -DEFINE_MTYPE_STATIC(NHRPD, NHRP_MULTICAST, "NHRP Multicast") +DEFINE_MTYPE_STATIC(NHRPD, NHRP_MULTICAST, "NHRP Multicast"); int netlink_mcast_nflog_group; static int netlink_mcast_log_fd = -1; |