pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/42575?usp=email )
Change subject: asp: Fix wrong variable logged in ss7_asp_xua_srv_conn_rx_cb() ......................................................................
asp: Fix wrong variable logged in ss7_asp_xua_srv_conn_rx_cb()
Change-Id: I24206a19fe57772caf8036464a2e1b6b8630fd7a --- M src/ss7_asp.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/75/42575/1
diff --git a/src/ss7_asp.c b/src/ss7_asp.c index 6efd9f4..c1739f3 100644 --- a/src/ss7_asp.c +++ b/src/ss7_asp.c @@ -1117,7 +1117,7 @@ flags = msgb_sctp_msg_flags(msg);
LOGPASP(asp, DLSS7, LOGL_DEBUG, "%s(): sctp_recvmsg() returned %d (flags=0x%x)\n", - __func__, rc, flags); + __func__, res, flags);
if (flags & OSMO_STREAM_SCTP_MSG_FLAGS_NOTIFICATION) { union sctp_notification *notif = (union sctp_notification *) msgb_data(msg); @@ -1318,7 +1318,7 @@ flags = msgb_sctp_msg_flags(msg);
LOGPASP(asp, DLSS7, LOGL_DEBUG, "%s(): sctp_recvmsg() returned %d (flags=0x%x)\n", - __func__, msgb_length(msg), flags); + __func__, res, flags);
if (flags & OSMO_STREAM_SCTP_MSG_FLAGS_NOTIFICATION) { union sctp_notification *notif = (union sctp_notification *) msgb_data(msg);