aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-10-22 17:34:29 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-10-22 17:34:29 +0200
commitcb66698c8d1bc499e832ad25b8f2dd000853cf11 (patch)
tree14c206a18b174701fee239c64be330a79d8acd12
parent7504bd6f1139d9c624db16e5158d77e388f07a72 (diff)
m3ua: Log incorrect selected AS
-rw-r--r--src/m3ua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m3ua.c b/src/m3ua.c
index d733b51..5ab3e79 100644
--- a/src/m3ua.c
+++ b/src/m3ua.c
@@ -561,9 +561,9 @@ static int m3ua_rx_xfer(struct osmo_ss7_asp *asp, struct xua_msg *xua)
/* Verify that this ASP is part of the AS. */
if (!osmo_ss7_as_has_asp(as, asp)) {
LOGPASP(asp, DLM3UA, LOGL_ERROR,
- "%s(): This Application Server Process is not part of the AS resolved by"
+ "%s(): This Application Server Process is not part of the AS %s resolved by"
" routing context %u\n",
- __func__, rctx);
+ __func__, (as)->cfg.name, rctx);
return M3UA_ERR_NO_CONFGD_AS_FOR_ASP;
}