Fix some typos in stdout output

Change-Id: I0dbb438f3bfbaf9744717cbeec31ceefdd679ee9
Related: OS#1694
This commit is contained in:
Ruben Undheim 2016-12-20 17:38:31 +01:00 committed by Max
parent 0c32685898
commit 59d57da1e5
6 changed files with 9 additions and 9 deletions

View File

@ -802,11 +802,11 @@ static void print_usage(void)
static void print_help(void) static void print_help(void)
{ {
#if 0 #if 0
printf("Commmands for reading from the BTS:\n"); printf("Commands for reading from the BTS:\n");
printf(" -D --dump\t\t\tDump the BTS configuration\n"); printf(" -D --dump\t\t\tDump the BTS configuration\n");
printf("\n"); printf("\n");
#endif #endif
printf("Commmands for writing to the BTS:\n"); printf("Commands for writing to the BTS:\n");
printf(" -u --unit-id UNIT_ID\t\tSet the Unit ID of the BTS\n"); printf(" -u --unit-id UNIT_ID\t\tSet the Unit ID of the BTS\n");
printf(" -o --oml-ip IP\t\tSet primary OML IP (IP of your BSC)\n"); printf(" -o --oml-ip IP\t\tSet primary OML IP (IP of your BSC)\n");
printf(" -i --ip-address IP/MASK\tSet static IP address + netmask of BTS\n"); printf(" -i --ip-address IP/MASK\tSet static IP address + netmask of BTS\n");

View File

@ -394,7 +394,7 @@ DEFUN(cfg_om2k_con_path_conc, cfg_om2k_con_path_conc_cmd,
DEFUN(cfg_bts_is_conn_list, cfg_bts_is_conn_list_cmd, DEFUN(cfg_bts_is_conn_list, cfg_bts_is_conn_list_cmd,
"is-connection-list (add|del) <0-2047> <0-2047> <0-255>", "is-connection-list (add|del) <0-2047> <0-2047> <0-255>",
"Interface Switch Connnection List\n" "Interface Switch Connection List\n"
"Add to IS list\n" "Delete from IS list\n" "Add to IS list\n" "Delete from IS list\n"
"ICP1\n" "ICP2\n" "Contiguity Index\n") "ICP1\n" "ICP2\n" "Contiguity Index\n")
{ {

View File

@ -136,7 +136,7 @@ static void assignment_t10_timeout(void *_conn)
struct gsm_subscriber_connection *conn = struct gsm_subscriber_connection *conn =
(struct gsm_subscriber_connection *) _conn; (struct gsm_subscriber_connection *) _conn;
LOGP(DMSC, LOGL_ERROR, "Assigment T10 timeout on %p\n", conn); LOGP(DMSC, LOGL_ERROR, "Assignment T10 timeout on %p\n", conn);
/* /*
* normal release on the secondary channel but only if the * normal release on the secondary channel but only if the
@ -478,7 +478,7 @@ static void handle_ass_fail(struct gsm_subscriber_connection *conn,
gh = msgb_l3(msg); gh = msgb_l3(msg);
if (msgb_l3len(msg) - sizeof(*gh) != 1) { if (msgb_l3len(msg) - sizeof(*gh) != 1) {
LOGP(DMSC, LOGL_ERROR, "assignemnt failure unhandled: %zu\n", LOGP(DMSC, LOGL_ERROR, "assignment failure unhandled: %zu\n",
msgb_l3len(msg) - sizeof(*gh)); msgb_l3len(msg) - sizeof(*gh));
rr_failure = NULL; rr_failure = NULL;
} else { } else {

View File

@ -756,7 +756,7 @@ static int smpp_pdu_rx(struct osmo_esme *esme, struct msgb *msg __uses)
case QUERY_SM: case QUERY_SM:
case REPLACE_SM: case REPLACE_SM:
case SUBMIT_MULTI: case SUBMIT_MULTI:
LOGP(DSMPP, LOGL_NOTICE, "[%s] Unimplemented PDU Commmand " LOGP(DSMPP, LOGL_NOTICE, "[%s] Unimplemented PDU Command "
"0x%08x\n", esme->system_id, cmd_id); "0x%08x\n", esme->system_id, cmd_id);
break; break;
default: default:

View File

@ -435,7 +435,7 @@ DEFUN(cfg_no_esme_defaultroute, cfg_esme_no_defaultroute_cmd,
DEFUN(cfg_esme_del_src_imsi, cfg_esme_del_src_imsi_cmd, DEFUN(cfg_esme_del_src_imsi, cfg_esme_del_src_imsi_cmd,
"deliver-src-imsi", "deliver-src-imsi",
"Enable the use of IMSI as source addres in DELIVER") "Enable the use of IMSI as source address in DELIVER")
{ {
struct osmo_smpp_acl *acl = vty->index; struct osmo_smpp_acl *acl = vty->index;
@ -446,7 +446,7 @@ DEFUN(cfg_esme_del_src_imsi, cfg_esme_del_src_imsi_cmd,
DEFUN(cfg_esme_no_del_src_imsi, cfg_esme_no_del_src_imsi_cmd, DEFUN(cfg_esme_no_del_src_imsi, cfg_esme_no_del_src_imsi_cmd,
"no deliver-src-imsi", NO_STR "no deliver-src-imsi", NO_STR
"Disable the use of IMSI as source addres in DELIVER") "Disable the use of IMSI as source address in DELIVER")
{ {
struct osmo_smpp_acl *acl = vty->index; struct osmo_smpp_acl *acl = vty->index;

View File

@ -688,7 +688,7 @@ DEFUN(cfg_msc_no_acc_lst_name,
DEFUN(cfg_net_bsc_mid_call_text, DEFUN(cfg_net_bsc_mid_call_text,
cfg_net_bsc_mid_call_text_cmd, cfg_net_bsc_mid_call_text_cmd,
"mid-call-text .TEXT", "mid-call-text .TEXT",
"Set the USSD notifcation to be send.\n" "Text to be sent\n") "Set the USSD notification to be send.\n" "Text to be sent\n")
{ {
struct osmo_bsc_data *data = osmo_bsc_data(vty); struct osmo_bsc_data *data = osmo_bsc_data(vty);
char *txt = argv_concat(argv, argc, 0); char *txt = argv_concat(argv, argc, 0);