aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2020-05-09 19:52:41 +0300
committeripse <Alexander.Chemeris@gmail.com>2020-05-09 18:02:13 +0000
commitdb668ce4d4178893a673bb24cf61587deb3b21b7 (patch)
treed6cbd9ca336c647fd33eb5725754f453a98e4b6f
parentafa1e8c484ae6f85916930e5977725ce7333bc26 (diff)
bsc_subscr_conn_fsm: Fix a typo in the comment life->live
-rw-r--r--src/osmo-bsc/bsc_subscr_conn_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/bsc_subscr_conn_fsm.c b/src/osmo-bsc/bsc_subscr_conn_fsm.c
index a96adb36a..77d5d1a44 100644
--- a/src/osmo-bsc/bsc_subscr_conn_fsm.c
+++ b/src/osmo-bsc/bsc_subscr_conn_fsm.c
@@ -117,7 +117,7 @@ int gscon_sigtran_send(struct gsm_subscriber_connection *conn, struct msgb *msg)
return -ENOMEM;
/* Make sure that we only attempt to send SCCP messages if we have
- * a life SCCP connection. Otherwise drop the message. */
+ * a live SCCP connection. Otherwise drop the message. */
if (conn->fi->state == ST_INIT || conn->fi->state == ST_WAIT_CC) {
LOGPFSML(conn->fi, LOGL_ERROR, "No active SCCP connection, dropping message\n");
msgb_free(msg);