From 413c86b854874ce2bd9f2285155000bf0cae5829 Mon Sep 17 00:00:00 2001 From: Rahul Date: Fri, 22 May 2020 13:34:56 +0530 Subject: [PATCH] qosmngr: fix uci param name The uci parameter name for destination mac address is incorrect. It should be dst_mac and dest_mac, the same is rectified with this change. --- qosmngr/files/lib/qos/broadcom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qosmngr/files/lib/qos/broadcom.sh b/qosmngr/files/lib/qos/broadcom.sh index 5c6c6a17e..c7b8fe2b4 100755 --- a/qosmngr/files/lib/qos/broadcom.sh +++ b/qosmngr/files/lib/qos/broadcom.sh @@ -120,7 +120,7 @@ handle_ebtables_rules() { [ -n "$src_if" ] && broute_filter_on_src_if $src_if config_get src_mac "$sid" "src_mac" [ -n "$src_mac" ] && broute_filter_on_src_mac $src_mac - config_get dst_mac "$sid" "dest_mac" + config_get dst_mac "$sid" "dst_mac" [ -n "$dst_mac" ] && broute_filter_on_dst_mac $dst_mac config_get pcp_check "$sid" "pcp_check" [ -n "$pcp_check" ] && broute_filter_on_pcp $pcp_check