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/.
Harald Welte gerrit-no-reply at lists.osmocom.orgHarald Welte has submitted this change and it was merged.
Change subject: fix log msg typo, x5
......................................................................
fix log msg typo, x5
Change-Id: I00ff99ef14d62d3b353fe69762ae49f374938f94
Reviewed-on: https://gerrit.osmocom.org/265
Tested-by: Jenkins Builder
Reviewed-by: Harald Welte <laforge at gnumonks.org>
---
M src/sua.c
1 file changed, 5 insertions(+), 5 deletions(-)
Approvals:
Harald Welte: Looks good to me, approved
Jenkins Builder: Verified
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: merged
Gerrit-Change-Id: I00ff99ef14d62d3b353fe69762ae49f374938f94
Gerrit-PatchSet: 2
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder