summaryrefslogtreecommitdiffstats
path: root/pathd/path_ted.c
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2021-08-05 22:45:44 +0200
committerIgor Ryzhov <iryzhov@nfware.com>2021-08-05 22:45:44 +0200
commitdfbabd45f8faaf4b697778ecf89951099797ce9b (patch)
tree34651bce0a385c1847f33d2c6056f4c3f5e704e2 /pathd/path_ted.c
parentMerge pull request #9050 from LabNConsulting/chopps/reset-parallel (diff)
downloadfrr-dfbabd45f8faaf4b697778ecf89951099797ce9b.tar.xz
frr-dfbabd45f8faaf4b697778ecf89951099797ce9b.zip
pathd: fix indentation for mpls-te config
Before: ``` segment-routing traffic-eng mpls-te on mpls-te import ospfv2 ``` After: ``` segment-routing traffic-eng mpls-te on mpls-te import ospfv2 ``` Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to '')
-rw-r--r--pathd/path_ted.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pathd/path_ted.c b/pathd/path_ted.c
index 01ada9225..d17b5a0aa 100644
--- a/pathd/path_ted.c
+++ b/pathd/path_ted.c
@@ -516,16 +516,16 @@ uint32_t path_ted_config_write(struct vty *vty)
{
if (ted_state_g.enabled) {
- vty_out(vty, " mpls-te on\n");
+ vty_out(vty, " mpls-te on\n");
switch (ted_state_g.import) {
case IMPORT_ISIS:
- vty_out(vty, " mpls-te import isis\n");
+ vty_out(vty, " mpls-te import isis\n");
break;
case IMPORT_OSPFv2:
- vty_out(vty, " mpls-te import ospfv2\n");
+ vty_out(vty, " mpls-te import ospfv2\n");
break;
case IMPORT_OSPFv3:
- vty_out(vty, " mpls-te import ospfv3\n");
+ vty_out(vty, " mpls-te import ospfv3\n");
break;
default:
break;