This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/265
fix log msg typo, x5
Change-Id: I00ff99ef14d62d3b353fe69762ae49f374938f94
---
M src/sua.c
1 file changed, 5 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/65/265/1
diff --git a/src/sua.c b/src/sua.c
index 89182d2..5575d58 100644
--- a/src/sua.c
+++ b/src/sua.c
@@ -844,7 +844,7 @@
/* resolve conn */
conn = conn_find_by_id(link, conn_id);
if (!conn) {
- LOGP(DSUA, LOGL_ERROR, "COAK for unknwon reference %u\n",
+ LOGP(DSUA, LOGL_ERROR, "COAK for unknown reference %u\n",
conn_id);
/* FIXME: send error reply down the sua link? */
return -1;
@@ -906,7 +906,7 @@
/* resolve conn */
conn = conn_find_by_id(link, conn_id);
if (!conn) {
- LOGP(DSUA, LOGL_ERROR, "COREF for unknwon reference %u\n",
+ LOGP(DSUA, LOGL_ERROR, "COREF for unknown reference %u\n",
conn_id);
/* FIXME: send error reply down the sua link? */
return -1;
@@ -959,7 +959,7 @@
/* resolve conn */
conn = conn_find_by_id(link, conn_id);
if (!conn) {
- LOGP(DSUA, LOGL_ERROR, "RELRE for unknwon reference %u\n",
+ LOGP(DSUA, LOGL_ERROR, "RELRE for unknown reference %u\n",
conn_id);
/* FIXME: send error reply down the sua link? */
return -1;
@@ -1009,7 +1009,7 @@
/* resolve conn */
conn = conn_find_by_id(link, conn_id);
if (!conn) {
- LOGP(DSUA, LOGL_ERROR, "RELCO for unknwon reference %u\n",
+ LOGP(DSUA, LOGL_ERROR, "RELCO for unknown reference %u\n",
conn_id);
/* FIXME: send error reply down the sua link? */
return -1;
@@ -1056,7 +1056,7 @@
/* resolve conn */
conn = conn_find_by_id(link, conn_id);
if (!conn) {
- LOGP(DSUA, LOGL_ERROR, "DT1 for unknwon reference %u\n",
+ LOGP(DSUA, LOGL_ERROR, "DT1 for unknown reference %u\n",
conn_id);
/* FIXME: send error reply down the sua link? */
return -1;
--
To view, visit https://gerrit.osmocom.org/265
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I00ff99ef14d62d3b353fe69762ae49f374938f94
Gerrit-PatchSet: 1
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>