aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2021-03-21 16:22:08 +0100
committerlynxis lazus <lynxis@fe80.eu>2021-03-24 15:42:45 +0000
commit1dd9cbf45e7ff0b63f0accda54c497845b1d628a (patch)
treed6b1410b4c153921a45c54901834629aabee03d6 /src
parent0ea4a4e0c4015683712871dee7e3d6961db530b2 (diff)
gprs_ns2: dump_nsvc: correct indention
As both `show ns entities` and `show ns binds` looking similiar correct the indention. Change-Id: I55794188bec7e62f0341188dbf23ac04006974fe
Diffstat (limited to 'src')
-rw-r--r--src/gb/gprs_ns2_vty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gb/gprs_ns2_vty.c b/src/gb/gprs_ns2_vty.c
index 9309e9e6..68a14c25 100644
--- a/src/gb/gprs_ns2_vty.c
+++ b/src/gb/gprs_ns2_vty.c
@@ -1854,15 +1854,15 @@ void ns2_vty_dump_nsvc(struct vty *vty, struct gprs_ns2_vc *nsvc, bool stats)
else
snprintf(nsvci_str, sizeof(nsvci_str), "none");
- vty_out(vty, " NSVCI %s: %s %s data_weight=%u sig_weight=%u %s%s", nsvci_str,
+ vty_out(vty, " NSVCI %s: %s %s data_weight=%u sig_weight=%u %s%s", nsvci_str,
osmo_fsm_inst_state_name(nsvc->fi),
nsvc->persistent ? "PERSIST" : "DYNAMIC",
nsvc->data_weight, nsvc->sig_weight,
gprs_ns2_ll_str(nsvc), VTY_NEWLINE);
if (stats) {
- vty_out_rate_ctr_group(vty, " ", nsvc->ctrg);
- vty_out_stat_item_group(vty, " ", nsvc->statg);
+ vty_out_rate_ctr_group(vty, " ", nsvc->ctrg);
+ vty_out_stat_item_group(vty, " ", nsvc->statg);
}
}