aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-06-16 21:40:47 +0200
committerHarald Welte <laforge@osmocom.org>2022-06-16 21:40:47 +0200
commit70802f76d9c4cf07b072a2ad66035403617498cc (patch)
tree17508ad0aca9d0342cfc0ffa4a6af1a0ccadef19
parentd51a8de5052fcea04fa7eeff35e692d502de7ace (diff)
[cosmetic] sccp_scoc.c: fix comments about corresponding SCCP msg types
-rw-r--r--src/sccp_scoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sccp_scoc.c b/src/sccp_scoc.c
index 5f109b3..f3f7a38 100644
--- a/src/sccp_scoc.c
+++ b/src/sccp_scoc.c
@@ -615,7 +615,7 @@ static struct xua_msg *xua_gen_msg_co(struct sccp_connection *conn, uint32_t eve
xua_msg_add_data(xua, SUA_IEI_DATA, msgb_l2len(prim->oph.msg),
msgb_l2(prim->oph.msg));
break;
- case SUA_CO_RELRE: /* Release Request == SCCP REL */
+ case SUA_CO_RELRE: /* Release Request == SCCP RLSD */
if (!prim)
goto prim_needed;
xua->hdr = XUA_HDR(SUA_MSGC_CO, SUA_CO_RELRE);
@@ -628,7 +628,7 @@ static struct xua_msg *xua_gen_msg_co(struct sccp_connection *conn, uint32_t eve
xua_msg_add_data(xua, SUA_IEI_DATA, msgb_l2len(prim->oph.msg),
msgb_l2(prim->oph.msg));
break;
- case SUA_CO_RELCO: /* Release Confirm == SCCP RLSD */
+ case SUA_CO_RELCO: /* Release Confirm == SCCP RLC */
xua->hdr = XUA_HDR(SUA_MSGC_CO, SUA_CO_RELCO);
xua_msg_add_u32(xua, SUA_IEI_ROUTE_CTX, conn->inst->route_ctx);
xua_msg_add_u32(xua, SUA_IEI_DEST_REF, conn->remote_ref);