diff options
author | Harald Welte <laforge@gnumonks.org> | 2018-03-23 19:35:59 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2018-03-23 19:35:59 +0100 |
commit | a6a34fd7188bbe46fbd84484610697dd5930d584 (patch) | |
tree | c330effd3cf324fe5ea9e2d4b73d1181d74b1810 | |
parent | fd203f6a97831cf5bf40b931d58244ebf0ecf75a (diff) |
Call the program "OsmoSIPcon" (also in vty)
It's confusing to access the telnet interface and then see a prompt
that's not like the program name
Change-Id: Iba20c1c90e528d08bd362be39d86317569c253e6
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/vty.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -78,7 +78,7 @@ static const struct log_info mncc_sip_info = { static void print_help(void) { - printf("Osmo MNCC to SIP bridge\n"); + printf("OsmoSIPcon: MNCC to SIP bridge\n"); printf(" -h --hekp\tthis text\n"); printf(" -c --config-file NAME\tThe config file to use [%s]\n", config_file); } @@ -51,7 +51,7 @@ static struct cmd_node app_node = { }; static struct vty_app_info vty_info = { - .name = "OsmoMNCC", + .name = "OsmoSIPcon", .version = PACKAGE_VERSION, .go_parent_cb = mncc_vty_go_parent, .is_config_node = mncc_vty_is_config_node, |