From 1f44a226ffacff63290a34a3824f8373e4d5f931 Mon Sep 17 00:00:00 2001 From: Y Bharath Date: Tue, 16 Jun 2026 09:00:22 +0530 Subject: [PATCH] yang: Swapped RPF lookup mode descriptions Swapped RPF lookup mode descriptions Corrected inconsistent boolean defaults in the module Signed-off-by: y-bharath14 --- yang/frr-pim.yang | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yang/frr-pim.yang b/yang/frr-pim.yang index e37ed18e9a1e..594891144b84 100644 --- a/yang/frr-pim.yang +++ b/yang/frr-pim.yang @@ -104,12 +104,12 @@ module frr-pim { enum "mrib-only" { value 1; description - "Lookup in unicast RIB only."; + "Lookup in multicast RIB only."; } enum "urib-only" { value 2; description - "Lookup in multicast RIB only."; + "Lookup in unicast RIB only."; } enum "mrib-then-urib" { value 3; @@ -349,14 +349,14 @@ module frr-pim { leaf log-neighbor-events { type boolean; - default false; + default "false"; description "Log all MSDP neighbor related events."; } leaf log-sa-events { type boolean; - default false; + default "false"; description "Log all MSDP SA related events."; } @@ -371,7 +371,7 @@ module frr-pim { leaf shutdown { type boolean; - default false; + default "false"; description "Shutdown MSDP functionality."; }