aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-06-30 17:11:23 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2017-06-30 17:11:23 +0200
commit458c2b0a72fefbd2c725c1b512f761b3bfc74229 (patch)
tree46223e915056c788043fe89ff7ba01c7894d30bf
parent250c7f7a539a0626f4a013429f9fea84d580089f (diff)
osmo-bsc: fix typo
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_sigtran.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c b/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c
index 397dcf4f8..ab61c3435 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c
@@ -231,7 +231,7 @@ enum bsc_con osmo_bsc_sigtran_new_conn(struct gsm_subscriber_connection *conn, s
OSMO_ASSERT(conn);
OSMO_ASSERT(msc);
- LOGP(DMSC, LOGL_NOTICE, "Initalizing resources for new SIGTRAN connection to MSC No.: %i...\n", msc->nr);
+ LOGP(DMSC, LOGL_NOTICE, "Initializing resources for new SIGTRAN connection to MSC No.: %i...\n", msc->nr);
if (a_reset_conn_ready(msc->a.reset) == false) {
LOGP(DMSC, LOGL_ERROR, "MSC is not connected. Dropping.\n");
@@ -431,7 +431,7 @@ int osmo_bsc_sigtran_init(struct llist_head *mscs)
llist_for_each_entry(msc, msc_list, entry) {
snprintf(msc_name, sizeof(msc_name), "MSC No.: %u", msc->nr);
- LOGP(DMSC, LOGL_NOTICE, "Initalizing SCCP connection to %s\n", msc_name);
+ LOGP(DMSC, LOGL_NOTICE, "Initializing SCCP connection to %s\n", msc_name);
/* Check if the sccp-address */
if (test_addr(&msc->a.bsc_addr) < 0) {