aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-01-20 21:17:05 +0100
committerlaforge <laforge@osmocom.org>2021-01-20 22:06:08 +0000
commit2627c28188c5bf70d55503dae75d4d9061624e1b (patch)
tree6372858281ab549e51dffee5f77c47633ea7ae34
parent66f76223c468e369ffa273dee16442b39aaccd99 (diff)
vty: fix error messages in lchan specific commands
-rw-r--r--src/common/vty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/vty.c b/src/common/vty.c
index 689ae58c..a0ebfaef 100644
--- a/src/common/vty.c
+++ b/src/common/vty.c
@@ -1965,7 +1965,7 @@ DEFUN(bts_t_t_l_jitter_buf,
lchan = resolve_lchan(net, argv, 0);
if (!lchan) {
- vty_out(vty, "%% can't find BTS%s", VTY_NEWLINE);
+ vty_out(vty, "%% Could not resolve logical channel%s", VTY_NEWLINE);
return CMD_WARNING;
}
if (!lchan->abis_ip.rtp_socket) {
@@ -1996,7 +1996,7 @@ DEFUN(bts_t_t_l_loopback,
lchan = resolve_lchan(net, argv, 0);
if (!lchan) {
- vty_out(vty, "%% can't find BTS%s", VTY_NEWLINE);
+ vty_out(vty, "%% Could not resolve logical channel%s", VTY_NEWLINE);
return CMD_WARNING;
}
lchan->loopback = 1;
@@ -2014,7 +2014,7 @@ DEFUN(no_bts_t_t_l_loopback,
lchan = resolve_lchan(net, argv, 0);
if (!lchan) {
- vty_out(vty, "%% can't find BTS%s", VTY_NEWLINE);
+ vty_out(vty, "%% Could not resolve logical channel%s", VTY_NEWLINE);
return CMD_WARNING;
}
lchan->loopback = 0;