Change in ...osmo-bsc[master]: Fix some spelling errors found by lintian

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/.

laforge gerrit-no-reply at lists.osmocom.org
Wed Jul 17 11:01:51 UTC 2019


laforge has submitted this change and it was merged. ( https://gerrit.osmocom.org/c/osmo-bsc/+/14810 )

Change subject: Fix some spelling errors found by lintian
......................................................................

Fix some spelling errors found by lintian

Change-Id: I63a733f8bea69f355a6686d99c3aa194c8ac9012
---
M doc/manuals/vty/bsc_vty_reference.xml
M src/osmo-bsc/a_reset.c
M src/osmo-bsc/abis_om2000_vty.c
M src/osmo-bsc/bsc_vty.c
M src/osmo-bsc/osmo_bsc_main.c
M src/osmo-bsc/osmo_bsc_sigtran.c
M src/osmo-bsc/osmo_bsc_vty.c
M src/osmo-bsc/pcu_sock.c
8 files changed, 10 insertions(+), 10 deletions(-)

Approvals:
  Jenkins Builder: Verified
  fixeria: Looks good to me, but someone else must approve
  laforge: Looks good to me, approved
  pespin: Looks good to me, approved



diff --git a/doc/manuals/vty/bsc_vty_reference.xml b/doc/manuals/vty/bsc_vty_reference.xml
index 4d25e69..db4f2c1 100644
--- a/doc/manuals/vty/bsc_vty_reference.xml
+++ b/doc/manuals/vty/bsc_vty_reference.xml
@@ -2958,7 +2958,7 @@
     </command>
     <command id='channel allocator (ascending|descending)'>
       <params>
-        <param name='channel' doc='Channnel Allocator' />
+        <param name='channel' doc='Channel Allocator' />
         <param name='allocator' doc='Channel Allocator' />
         <param name='ascending' doc='Allocate Timeslots and Transceivers in ascending order' />
         <param name='descending' doc='Allocate Timeslots and Transceivers in descending order' />
@@ -4830,7 +4830,7 @@
         <param name='con-path' doc='CON Path (In/Out)' />
         <param name='add' doc='Add CON Path to Concentration Group' />
         <param name='del' doc='Delete CON Path from Concentration Group' />
-        <param name='<0-2047>' doc='CON Conection Point' />
+        <param name='<0-2047>' doc='CON Connection Point' />
         <param name='<0-255>' doc='Contiguity Index' />
         <param name='deconcentrated' doc='De-concentrated in/outlet' />
         <param name='<0-63>' doc='TEI Value' />
@@ -4841,7 +4841,7 @@
         <param name='con-path' doc='CON Path (In/Out)' />
         <param name='add' doc='Add CON Path to Concentration Group' />
         <param name='del' doc='Delete CON Path from Concentration Group' />
-        <param name='<0-2047>' doc='CON Conection Point' />
+        <param name='<0-2047>' doc='CON Connection Point' />
         <param name='<0-255>' doc='Contiguity Index' />
         <param name='concentrated' doc='Concentrated in/outlet' />
         <param name='<1-16>' doc='Tag Number' />
diff --git a/src/osmo-bsc/a_reset.c b/src/osmo-bsc/a_reset.c
index 3c21142..fc59ff4 100644
--- a/src/osmo-bsc/a_reset.c
+++ b/src/osmo-bsc/a_reset.c
@@ -71,7 +71,7 @@
 {
 	struct reset_ctx *reset_ctx = (struct reset_ctx *)fi->priv;
 	OSMO_ASSERT(reset_ctx);
-	LOGPFSML(fi, LOGL_NOTICE, "SIGTRAN connection succeded.\n");
+	LOGPFSML(fi, LOGL_NOTICE, "SIGTRAN connection succeeded.\n");
 
 	reset_ctx->conn_loss_counter = 0;
 	osmo_fsm_inst_state_chg(fi, ST_CONN, 0, 0);
diff --git a/src/osmo-bsc/abis_om2000_vty.c b/src/osmo-bsc/abis_om2000_vty.c
index faf39c1..3ae870e 100644
--- a/src/osmo-bsc/abis_om2000_vty.c
+++ b/src/osmo-bsc/abis_om2000_vty.c
@@ -368,7 +368,7 @@
 #define CON_PATH_HELP	"CON Path (In/Out)\n"				\
 			"Add CON Path to Concentration Group\n"		\
 			"Delete CON Path from Concentration Group\n"	\
-			"CON Conection Point\n"				\
+			"CON Connection Point\n"				\
 			"Contiguity Index\n"				\
 
 DEFUN(cfg_om2k_con_path_dec, cfg_om2k_con_path_dec_cmd,
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index c4e091c..24f8313 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -2371,7 +2371,7 @@
 
 DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
       "channel allocator (ascending|descending)",
-	"Channnel Allocator\n" "Channel Allocator\n"
+	"Channel Allocator\n" "Channel Allocator\n"
 	"Allocate Timeslots and Transceivers in ascending order\n"
 	"Allocate Timeslots and Transceivers in descending order\n")
 {
diff --git a/src/osmo-bsc/osmo_bsc_main.c b/src/osmo-bsc/osmo_bsc_main.c
index 0e0e8ca..aba8c40 100644
--- a/src/osmo-bsc/osmo_bsc_main.c
+++ b/src/osmo-bsc/osmo_bsc_main.c
@@ -906,7 +906,7 @@
 	}
 
 	if (osmo_bsc_sigtran_init(&bsc_gsmnet->bsc_data->mscs) != 0) {
-		LOGP(DNM, LOGL_ERROR, "Failed to initalize sigtran backhaul.\n");
+		LOGP(DNM, LOGL_ERROR, "Failed to initialize sigtran backhaul.\n");
 		exit(1);
 	}
 
diff --git a/src/osmo-bsc/osmo_bsc_sigtran.c b/src/osmo-bsc/osmo_bsc_sigtran.c
index 763e1e1..0bf48a7 100644
--- a/src/osmo-bsc/osmo_bsc_sigtran.c
+++ b/src/osmo-bsc/osmo_bsc_sigtran.c
@@ -564,7 +564,7 @@
 		/* Start MSC-Reset procedure */
 		a_reset_alloc(msc, msc_name, osmo_bsc_sigtran_reset_cb);
 
-		/* If we have detected that the SS7 configuration of the MSC we have just initalized
+		/* If we have detected that the SS7 configuration of the MSC we have just initialized
 		 * was incomplete or completely missing, we can not tolerate another incomplete
 		 * configuration. The reson for this is that we do only specify exactly one default
 		 * pointcode pair. We also specify localhost as default IP-Address. If we have wanted
diff --git a/src/osmo-bsc/osmo_bsc_vty.c b/src/osmo-bsc/osmo_bsc_vty.c
index 4591ad1..e656d70 100644
--- a/src/osmo-bsc/osmo_bsc_vty.c
+++ b/src/osmo-bsc/osmo_bsc_vty.c
@@ -569,7 +569,7 @@
 	if (addr->presence & OSMO_SCCP_ADDR_T_SSN) {
 		if (addr->ssn != OSMO_SCCP_SSN_BSSAP)
 			vty_out(vty,
-				"setting an SSN (%u) different from the standard (%u) is not allowd, will use standard SSN for address: %s%s",
+				"setting an SSN (%u) different from the standard (%u) is not allowed, will use standard SSN for address: %s%s",
 				addr->ssn, OSMO_SCCP_SSN_BSSAP, osmo_sccp_addr_dump(addr), VTY_NEWLINE);
 	}
 
diff --git a/src/osmo-bsc/pcu_sock.c b/src/osmo-bsc/pcu_sock.c
index b71621d..4425117 100644
--- a/src/osmo-bsc/pcu_sock.c
+++ b/src/osmo-bsc/pcu_sock.c
@@ -421,7 +421,7 @@
 		rc = pcu_rx_data_req(bts, msg_type, &pcu_prim->u.data_req);
 		break;
 	default:
-		LOGP(DPCU, LOGL_ERROR, "Received unknwon PCU msg type %d\n",
+		LOGP(DPCU, LOGL_ERROR, "Received unknown PCU msg type %d\n",
 			msg_type);
 		rc = -EINVAL;
 	}

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/14810
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I63a733f8bea69f355a6686d99c3aa194c8ac9012
Gerrit-Change-Number: 14810
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen <ewild at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Ruben Undheim <ruben.undheim at gmail.com>
Gerrit-Reviewer: fixeria <axilirator at gmail.com>
Gerrit-Reviewer: laforge <laforge at gnumonks.org>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190717/3d089cd5/attachment.htm>


More information about the gerrit-log mailing list