Neels Hofmeyr has uploaded this change for review. (
https://gerrit.osmocom.org/10180
Change subject: cosmetic: typos in log and comment
......................................................................
cosmetic: typos in log and comment
Change-Id: I2416d9a45e88f4317aa8e6644f5581a6f4f119c8
---
M src/libmsc/msc_mgcp.c
1 file changed, 6 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/80/10180/1
diff --git a/src/libmsc/msc_mgcp.c b/src/libmsc/msc_mgcp.c
index e261e7a..f5bdeb7 100644
--- a/src/libmsc/msc_mgcp.c
+++ b/src/libmsc/msc_mgcp.c
@@ -315,8 +315,8 @@
}
/* HACK: We put the connection in loopback mode at the beginnig to
- * trick the NodeB into doing the IuUP negotiation with itsself.
- * this is a hack we need because osmo-mgw does not support IuUP yet */
+ * trick the hNodeB into doing the IuUP negotiation with itself.
+ * This is a hack we need because osmo-mgw does not support IuUP yet,
see OS#2459. */
#ifdef BUILD_IU
if (conn->via_ran == RAN_UTRAN_IU)
mgcp_msg.conn_mode = MGCP_CONN_LOOPBACK;
@@ -1044,19 +1044,19 @@
OSMO_ASSERT(conn);
if (port == 0) {
- LOGP(DMGCP, LOGL_ERROR, "(subscriber:%s) invalid remote call
leg port, assignmnet completion failed\n",
+ LOGP(DMGCP, LOGL_ERROR, "(subscriber:%s) invalid remote call
leg port, assignment completion failed\n",
vlr_subscr_name(conn->vsub));
return -EINVAL;
}
if (!addr || strlen(addr) <= 0) {
- LOGP(DMGCP, LOGL_ERROR, "(subscriber:%s) missing remote call
leg address, assignmnet completion failed\n",
+ LOGP(DMGCP, LOGL_ERROR, "(subscriber:%s) missing remote call
leg address, assignment completion failed\n",
vlr_subscr_name(conn->vsub));
return -EINVAL;
}
mgcp_ctx = conn->rtp.mgcp_ctx;
if (!mgcp_ctx) {
- LOGP(DMGCP, LOGL_ERROR, "(subscriber:%s) invalid mgcp context,
assignmnet completion failed.\n",
+ LOGP(DMGCP, LOGL_ERROR, "(subscriber:%s) invalid mgcp context,
assignment completion failed.\n",
vlr_subscr_name(conn->vsub));
return -EINVAL;
}
@@ -1066,7 +1066,7 @@
conn->rtp.remote_port_ran = port;
osmo_strlcpy(conn->rtp.remote_addr_ran, addr,
sizeof(conn->rtp.remote_addr_ran));
- LOGP(DMGCP, LOGL_DEBUG, "(subscriber:%s) assignmnet completed, rtp
%s:%d.\n",
+ LOGP(DMGCP, LOGL_DEBUG, "(subscriber:%s) assignment completed, rtp
%s:%d.\n",
vlr_subscr_name(conn->vsub), conn->rtp.remote_addr_ran, port);
/* Note: We only dispatch the event if we are really waiting for the
--
To view, visit https://gerrit.osmocom.org/10180
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I2416d9a45e88f4317aa8e6644f5581a6f4f119c8
Gerrit-Change-Number: 10180
Gerrit-PatchSet: 1
Gerrit-Owner: Neels Hofmeyr <[email protected]>