[MERGED] openbsc[master]: Fix some typos in stdout output

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Tue Dec 20 22:05:31 UTC 2016


Neels Hofmeyr has submitted this change and it was merged.

Change subject: Fix some typos in stdout output
......................................................................


Fix some typos in stdout output

Change-Id: I0dbb438f3bfbaf9744717cbeec31ceefdd679ee9
Related: OS#1694
---
M openbsc/src/ipaccess/ipaccess-config.c
M openbsc/src/libbsc/abis_om2000_vty.c
M openbsc/src/libbsc/bsc_api.c
M openbsc/src/libmsc/smpp_smsc.c
M openbsc/src/libmsc/smpp_vty.c
M openbsc/src/osmo-bsc/osmo_bsc_vty.c
6 files changed, 9 insertions(+), 9 deletions(-)

Approvals:
  Neels Hofmeyr: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/openbsc/src/ipaccess/ipaccess-config.c b/openbsc/src/ipaccess/ipaccess-config.c
index 0a9dfc8..0c3f888 100644
--- a/openbsc/src/ipaccess/ipaccess-config.c
+++ b/openbsc/src/ipaccess/ipaccess-config.c
@@ -802,11 +802,11 @@
 static void print_help(void)
 {
 #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("\n");
 #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("  -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");
diff --git a/openbsc/src/libbsc/abis_om2000_vty.c b/openbsc/src/libbsc/abis_om2000_vty.c
index 27b1947..adad479 100644
--- a/openbsc/src/libbsc/abis_om2000_vty.c
+++ b/openbsc/src/libbsc/abis_om2000_vty.c
@@ -394,7 +394,7 @@
 
 DEFUN(cfg_bts_is_conn_list, cfg_bts_is_conn_list_cmd,
 	"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"
 	"ICP1\n" "ICP2\n" "Contiguity Index\n")
 {
diff --git a/openbsc/src/libbsc/bsc_api.c b/openbsc/src/libbsc/bsc_api.c
index 395002a..8a4c85f 100644
--- a/openbsc/src/libbsc/bsc_api.c
+++ b/openbsc/src/libbsc/bsc_api.c
@@ -136,7 +136,7 @@
 	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
@@ -478,7 +478,7 @@
 
 	gh = msgb_l3(msg);
 	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));
 		rr_failure = NULL;
 	} else {
diff --git a/openbsc/src/libmsc/smpp_smsc.c b/openbsc/src/libmsc/smpp_smsc.c
index ef4277a..e537490 100644
--- a/openbsc/src/libmsc/smpp_smsc.c
+++ b/openbsc/src/libmsc/smpp_smsc.c
@@ -756,7 +756,7 @@
 	case QUERY_SM:
 	case REPLACE_SM:
 	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);
 		break;
 	default:
diff --git a/openbsc/src/libmsc/smpp_vty.c b/openbsc/src/libmsc/smpp_vty.c
index 351e8be..13467f1 100644
--- a/openbsc/src/libmsc/smpp_vty.c
+++ b/openbsc/src/libmsc/smpp_vty.c
@@ -435,7 +435,7 @@
 
 DEFUN(cfg_esme_del_src_imsi, cfg_esme_del_src_imsi_cmd,
 	"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;
 
@@ -446,7 +446,7 @@
 
 DEFUN(cfg_esme_no_del_src_imsi, cfg_esme_no_del_src_imsi_cmd,
 	"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;
 
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_vty.c b/openbsc/src/osmo-bsc/osmo_bsc_vty.c
index e623c9c..86ccec4 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_vty.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_vty.c
@@ -688,7 +688,7 @@
 DEFUN(cfg_net_bsc_mid_call_text,
       cfg_net_bsc_mid_call_text_cmd,
       "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);
 	char *txt = argv_concat(argv, argc, 0);

-- 
To view, visit https://gerrit.osmocom.org/1463
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0dbb438f3bfbaf9744717cbeec31ceefdd679ee9
Gerrit-PatchSet: 1
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: Max <msuraev at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Ruben Undheim <ruben.undheim at gmail.com>



More information about the gerrit-log mailing list