pespin submitted this change.
route: Print priority in osmo_ss7_route_name()
Change-Id: Ib9a6ae95562a40eb6c03bbc81ddabf2694e4efa6
---
M src/ss7_route.c
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/ss7_route.c b/src/ss7_route.c
index e71b543..e40f1bc 100644
--- a/src/ss7_route.c
+++ b/src/ss7_route.c
@@ -317,9 +317,10 @@
goto out; \
} while (0)
- APPEND("pc=%u=%s mask=0x%x=%s",
+ APPEND("pc=%u=%s mask=0x%x=%s prio=%u",
rt->cfg.pc, osmo_ss7_pointcode_print_buf(pc_str, sizeof(pc_str), inst, rt->cfg.pc),
- rt->cfg.mask, osmo_ss7_pointcode_print_buf(mask_str, sizeof(mask_str), inst, rt->cfg.mask));
+ rt->cfg.mask, osmo_ss7_pointcode_print_buf(mask_str, sizeof(mask_str), inst, rt->cfg.mask),
+ rt->cfg.priority);
if (rt->cfg.dyn_allocated)
APPEND(" dyn");
To view, visit change 40553. To unsubscribe, or for help writing mail filters, visit settings.