From 0b723f6a6cdc4171ee67ddd8d8c1bb812fb4cf06 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Mon, 18 Sep 2017 17:10:36 +0200 Subject: [PATCH] vty: use internal node id for xml ids The 'show online-help' produces XML output with ids. We reference those from the osmo-gsm-manuals, but until now, these ids fall out of sync when the amount of VTY nodes changes. Change these ids to use the internal node ID constant (as in enum bsc_vty_node) instead of a simple counter. If this is merged, we need to adjust the references in osmo-gsm-manuals.git. Change-Id: Ib07fb9d9106e19f5be6539493e82b5d5991f8bc2 --- src/vty/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vty/command.c b/src/vty/command.c index a19d5db93..af936ee75 100644 --- a/src/vty/command.c +++ b/src/vty/command.c @@ -617,7 +617,7 @@ static int vty_dump_nodes(struct vty *vty) if (!cnode) continue; - vty_out(vty, " %s", i, VTY_NEWLINE); + vty_out(vty, " %s", cnode->node, VTY_NEWLINE); for (j = 0; j < vector_active(cnode->cmd_vector); ++j) { struct cmd_element *elem;