pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/36584?usp=email )
Change subject: Fix wrong string prefix in log line ......................................................................
Fix wrong string prefix in log line
Change-Id: Ifd16ff671d842ae90ec70c2e819a43174f3aa09a --- M src/osmo_ss7_asp.c 1 file changed, 10 insertions(+), 1 deletion(-)
Approvals: pespin: Looks good to me, approved daniel: Looks good to me, but someone else must approve fixeria: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/src/osmo_ss7_asp.c b/src/osmo_ss7_asp.c index 90c72a9..1ce159a 100644 --- a/src/osmo_ss7_asp.c +++ b/src/osmo_ss7_asp.c @@ -823,7 +823,7 @@
if (flags & OSMO_STREAM_SCTP_MSG_FLAGS_NOTIFICATION) { union sctp_notification *notif = (union sctp_notification *) msgb_data(msg); - log_sctp_notification(asp, "xUA CLNT", notif); + log_sctp_notification(asp, "xUA SRV", notif); asp_handle_sctp_notif_monitor_primary_address(asp, notif);
switch (notif->sn_header.sn_type) {