diff options
| author | Russ White <russ@riw.us> | 2024-02-20 10:15:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-20 10:15:39 -0500 |
| commit | 5362d4345672987bdcb9444cfe150234938a6e6c (patch) | |
| tree | 243529fc0e28f8355b534470036f3f8ec84418b0 | |
| parent | c478ea709aa453b2d678caa0c349ce87e241603a (diff) | |
| parent | 5d5ac73b6768fcd243d2db28469acbf6f5096f7a (diff) | |
Merge pull request #15367 from rampxxxx/ldp_sync_cleanup
ospfd: fix cli shown in running config when turning off ldp-sync
| -rw-r--r-- | ospfd/ospf_ldp_sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_ldp_sync.c b/ospfd/ospf_ldp_sync.c index 4aab880d22..d1ef85c9a6 100644 --- a/ospfd/ospf_ldp_sync.c +++ b/ospfd/ospf_ldp_sync.c @@ -774,7 +774,7 @@ DEFPY (no_ospf_mpls_ldp_sync, "Disable MPLS LDP-IGP Sync\n") { VTY_DECLVAR_INSTANCE_CONTEXT(ospf, ospf); - ospf_ldp_sync_gbl_exit(ospf, false); + ospf_ldp_sync_gbl_exit(ospf, true); return CMD_SUCCESS; } |
