vty: Add space after prompt, as customary

In all other programs, we have a space after the VTY prompt.

Change-Id: I7916c15cc34e41738a5716e4fefbb15e18f02fa7
This commit is contained in:
Harald Welte 2021-04-12 16:07:17 +02:00
parent 06303a6dc5
commit 611fd19fa3
1 changed files with 2 additions and 2 deletions

View File

@ -46,13 +46,13 @@ static struct osmo_pcap_client_conn *get_conn(struct vty *vty)
static struct cmd_node client_node = {
CLIENT_NODE,
"%s(client)#",
"%s(client)# ",
1,
};
static struct cmd_node server_node = {
CLIENT_SERVER_NODE,
"%s(server)#",
"%s(server)# ",
1,
};