aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2024-04-17 16:04:53 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2024-04-17 16:04:53 +0200
commitef237e187682c87a4c92257dbecc6db43678c629 (patch)
tree2fdf93ccac993c238ebb3c211094d95a8974d591
parent7bf18b43a141fd6a7aeae92771a160cb1c60cfca (diff)
Fix wrong string prefix in log line
-rw-r--r--src/osmo_ss7_asp.c2
1 files changed, 1 insertions, 1 deletions
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 @@ int ss7_asp_xua_srv_conn_rx_cb(struct osmo_stream_srv *conn, struct msgb *msg)
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) {