diff mbox

Fix typo in error message

Message ID 1458235478-4203-1-git-send-email-msuraev@sysmocom.de
State Accepted
Headers show

Commit Message

Max March 17, 2016, 5:24 p.m. UTC
From: Max <msuraev@sysmocom.de>

---
 src/common/vty.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Harald Welte March 18, 2016, 6:13 p.m. UTC | #1
Hi Max,

On Thu, Mar 17, 2016 at 06:24:38PM +0100, msuraev@sysmocom.de wrote:
> From: Max <msuraev@sysmocom.de>

Thanks, merged together with the two other octphy multi-trx related
patches.
diff mbox

Patch

diff --git a/src/common/vty.c b/src/common/vty.c
index bba6af1..b4aa616 100644
--- a/src/common/vty.c
+++ b/src/common/vty.c
@@ -222,7 +222,7 @@  DEFUN(cfg_bts_trx, cfg_bts_trx_cmd,
 
 	trx = gsm_bts_trx_num(bts, trx_nr);
 	if (!trx) {
-		vty_out(vty, "Unknown TRX %u. Aavialable TRX are: 0..%u%s",
+		vty_out(vty, "Unknown TRX %u. Available TRX are: 0..%u%s",
 			trx_nr, bts->num_trx - 1, VTY_NEWLINE);
 		return CMD_WARNING;
 	}