aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Whyte <keith@rhizomatica.org>2023-12-26 00:23:46 +0000
committerKeith Whyte <keith@rhizomatica.org>2024-04-06 04:13:04 +0100
commit91a6e50dd454b6f9512b6bf7f637488ef6cf6765 (patch)
tree3829a9528dc6152471c730770cc909a6dbaf29d5
parent073baefaf47e632ef3145c99ee699a4dacc63b05 (diff)
VTY: fix config indentation for pcu-socket paramsrhizomatica/production
osmo-bsc would not start with a config written from the vty due to incorrect identation on the pcu-socket parameters. Change-Id: I36a66794e654989b4b8bf54bb3727ccbfc2131fa
-rw-r--r--src/osmo-bsc/bsc_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index 373c6a880..ae9381996 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -418,7 +418,7 @@ static int config_write_net(struct vty *vty)
}
if (gsmnet->pcu_sock_path)
- vty_out(vty, " pcu-socket %s%s", gsmnet->pcu_sock_path, VTY_NEWLINE);
+ vty_out(vty, " pcu-socket %s%s", gsmnet->pcu_sock_path, VTY_NEWLINE);
neighbor_ident_vty_write_network(vty, " ");
mgcp_client_pool_config_write(vty, " ");