aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/lldp/lldp_output.c
diff options
context:
space:
mode:
authorDmitry Vakhrushev <dmitry@netgate.com>2020-10-11 20:32:27 +0300
committerMatthew Smith <mgsmith@netgate.com>2020-10-12 14:32:17 +0000
commit41bda044877bae25c5b584a5444c2a038a98e3a9 (patch)
tree341e2bebf7f5648e8107248ace7e4f97095ed218 /src/plugins/lldp/lldp_output.c
parentdecf51a86ac5df4892d0408b3770f7f8b3afe13d (diff)
lldp: fix typo in mac address constant
Type: fix Fixes: 149fd3fbd069a5f7be86e68472578ee7af229cb6 Signed-off-by: Dmitry Vakhrushev <dmitry@netgate.com> Change-Id: I06956f3ed3689172c3682d6b707991613255cabd
Diffstat (limited to 'src/plugins/lldp/lldp_output.c')
-rw-r--r--src/plugins/lldp/lldp_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lldp/lldp_output.c b/src/plugins/lldp/lldp_output.c
index deff723b4b3..c2d38dcde52 100644
--- a/src/plugins/lldp/lldp_output.c
+++ b/src/plugins/lldp/lldp_output.c
@@ -266,7 +266,7 @@ lldp_delete_intf (lldp_main_t * lm, lldp_intf_t * n)
/* 01:80:C2:00:00:0E - propagation constrained to a single
* physical link - stopped by all type of bridge */
-const u8 lldp_mac_addr[6] = { 0x01, 0x80, 0xC3, 0x00, 0x00, 0x0E };
+const u8 lldp_mac_addr[6] = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x0E };
static clib_error_t *
lldp_template_init (vlib_main_t * vm)