aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/main.c
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-04-09 10:55:37 +0200
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:28 +0200
commit05597a7ddbf9e838caaeb36980cefaa728ab8eec (patch)
treec13e1f2d495ade49f2f57f42c7da45af1cb96b0e /src/osmo-bts-trx/main.c
parent82676c13ee9ab2b73f089acf811239f8e37fa0fd (diff)
TRX: Fixed typos tranceiver -> transceiver
Diffstat (limited to 'src/osmo-bts-trx/main.c')
-rw-r--r--src/osmo-bts-trx/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bts-trx/main.c b/src/osmo-bts-trx/main.c
index 0879f2ee..ab71c861 100644
--- a/src/osmo-bts-trx/main.c
+++ b/src/osmo-bts-trx/main.c
@@ -155,8 +155,8 @@ static void print_help()
" -t --trx-num Set number of TRX (default=%d)\n"
" -i --gsmtap-ip The destination IP used for GSMTAP.\n"
" -H --high-prio Set realtime scheduler with maximum prio\n"
- " -I --tranceiver-ip Set IP of tranceiver (default=%s)\n"
- ,trx_num, tranceiver_ip);
+ " -I --local-trx-ip Local IP for transceiver to connect (default=%s)\n"
+ ,trx_num, transceiver_ip);
}
/* FIXME: finally get some option parsing code into libosmocore */
@@ -177,7 +177,7 @@ static void handle_options(int argc, char **argv)
{ "trx-num", 1, 0, 't' },
{ "gsmtap-ip", 1, 0, 'i' },
{ "high-prio", 0, 0, 'H' },
- { "tranceiver-ip", 1, 0, 'I' },
+ { "local-trx-ip", 1, 0, 'I' },
{ 0, 0, 0, 0 }
};
@@ -225,7 +225,7 @@ static void handle_options(int argc, char **argv)
high_prio = 1;
break;
case 'I':
- tranceiver_ip = strdup(optarg);
+ transceiver_ip = strdup(optarg);
break;
default:
break;