From a0e1b209398c6c580d2e34a10e724e12e8298d57 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 4 Mar 2025 18:05:35 +0100 Subject: [PATCH] Drop use of deprecated vty is_config_node() cb This callback was drepecated and is not ever called since libosmocore.git 70ce871532ab21955e0955d7e230eae65438f047 (release 1.3.0). See also libosmocore.git d31de237582f6fe3315d61bb9a488d4cda92654e. Change-Id: I1bbaa455c018ba9c0943ac3cf1ae5511ebb4b723 --- CommonLibs/trx_vty.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/CommonLibs/trx_vty.c b/CommonLibs/trx_vty.c index bd1b0ce9..96477225 100644 --- a/CommonLibs/trx_vty.c +++ b/CommonLibs/trx_vty.c @@ -781,17 +781,6 @@ DEFUN(show_trx, show_trx_cmd, return CMD_SUCCESS; } -static int trx_vty_is_config_node(struct vty *vty, int node) -{ - switch (node) { - case TRX_NODE: - case CHAN_NODE: - return 1; - default: - return 0; - } -} - static int trx_vty_go_parent(struct vty *vty) { switch (vty->node) { @@ -829,7 +818,6 @@ struct vty_app_info g_vty_info = { .version = PACKAGE_VERSION, .copyright = trx_copyright, .go_parent_cb = trx_vty_go_parent, - .is_config_node = trx_vty_is_config_node, }; struct trx_ctx *vty_trx_ctx_alloc(void *talloc_ctx)