summaryrefslogtreecommitdiffstats
path: root/src/host
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-11-14 09:59:32 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2017-11-14 09:59:34 +0100
commit0fcd1c147b3f83efe5def03f954f85a685fafea5 (patch)
tree102227db9f29d6dd5a423993be7aadf025754422 /src/host
parent0fd13fcd3cb505008c042d0b99e257da1ff76c5a (diff)
layer23 vty: fix prompts: insert space after '#'
"All" our VTY prompts have a space after the prompt. Also do that for '(ms)', '(test-sim)' and '(support)' prompts. Change OsmocomBB(ms)#exit to OsmocomBB(ms)# exit Change-Id: Id437279e0fa9845630a306958b404efa3b94b492
Diffstat (limited to 'src/host')
-rw-r--r--src/host/layer23/src/mobile/vty_interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/host/layer23/src/mobile/vty_interface.c b/src/host/layer23/src/mobile/vty_interface.c
index 9a4ae637..cbf81622 100644
--- a/src/host/layer23/src/mobile/vty_interface.c
+++ b/src/host/layer23/src/mobile/vty_interface.c
@@ -55,19 +55,19 @@ extern struct llist_head active_connections;
struct cmd_node ms_node = {
MS_NODE,
- "%s(ms)#",
+ "%s(ms)# ",
1
};
struct cmd_node testsim_node = {
TESTSIM_NODE,
- "%s(test-sim)#",
+ "%s(test-sim)# ",
1
};
struct cmd_node support_node = {
SUPPORT_NODE,
- "%s(support)#",
+ "%s(support)# ",
1
};