Harald Welte has submitted this change and it was merged. ( 
https://gerrit.osmocom.org/13232 )

Change subject: vty: Ensure to properly save route pointcode and mask when 
writing
......................................................................

vty: Ensure to properly save route pointcode and mask when writing

As osmo_ss7_route_print() returns a static buffer, we cannot use it
twice within a single log/print statement.  Rather, we must use
osmo_ss7_route_print2() for the second call, as it uses a separate
static buffer.

Change-Id: Ica32e83cbe8af2317cb07f8d8422a399fa537012
---
M src/osmo_ss7_vty.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Max: Looks good to me, approved
  Pau Espin Pedrol: Looks good to me, but someone else must approve
  Jenkins Builder: Verified



diff --git a/src/osmo_ss7_vty.c b/src/osmo_ss7_vty.c
index 1b7bcb9..950eb08 100644
--- a/src/osmo_ss7_vty.c
+++ b/src/osmo_ss7_vty.c
@@ -362,7 +362,7 @@
        llist_for_each_entry(rt, &rtable->routes, list) {
                vty_out(vty, "  update route %s %s linkset %s",
                        osmo_ss7_pointcode_print(rtable->inst, rt->cfg.pc),
-                       osmo_ss7_pointcode_print(rtable->inst, rt->cfg.mask),
+                       osmo_ss7_pointcode_print2(rtable->inst, rt->cfg.mask),
                        rt->cfg.linkset_name);
                if (rt->cfg.priority)
                        vty_out(vty, " priority %u", rt->cfg.priority);

--
To view, visit https://gerrit.osmocom.org/13232
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Ica32e83cbe8af2317cb07f8d8422a399fa537012
Gerrit-Change-Number: 13232
Gerrit-PatchSet: 3
Gerrit-Owner: Harald Welte <lafo...@gnumonks.org>
Gerrit-Reviewer: Harald Welte <lafo...@gnumonks.org>
Gerrit-Reviewer: Jenkins Builder (1000002)
Gerrit-Reviewer: Max <msur...@sysmocom.de>
Gerrit-Reviewer: Pau Espin Pedrol <pes...@sysmocom.de>

Reply via email to