bsc_subscr_conn_fsm: Fix a typo in the comment life->live

Change-Id: Ideba357678a59e3f314a0d618d181a233a43b4de
This commit is contained in:
Alexander Chemeris 2020-05-09 19:52:41 +03:00 committed by ipse
parent afa1e8c484
commit db668ce4d4
1 changed files with 1 additions and 1 deletions

View File

@ -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);