diff options
Diffstat (limited to 'src/vty')
-rw-r--r-- | src/vty/command.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vty/command.c b/src/vty/command.c index bec28a0d..6a523216 100644 --- a/src/vty/command.c +++ b/src/vty/command.c @@ -141,6 +141,10 @@ static int cmp_desc(const void *p, const void *q) static int is_config(struct vty *vty) { + /* ask the application */ + if (host.app_info->is_config_node) + return host.app_info->is_config_node(vty, vty->node); + /* Assume that everything above CONFIG_NODE is a config node */ return vty->node > CONFIG_NODE; } |