diff options
Diffstat (limited to 'vtysh/vtysh_config.c')
-rw-r--r-- | vtysh/vtysh_config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vtysh/vtysh_config.c b/vtysh/vtysh_config.c index 2ab9dd5a9..61bcf3b65 100644 --- a/vtysh/vtysh_config.c +++ b/vtysh/vtysh_config.c @@ -97,8 +97,10 @@ static struct config *config_get(int index, const char *line) } frr_each (config_master, master, config_loop) { - if (strcmp(config_loop->name, line) == 0) + if (strcmp(config_loop->name, line) == 0) { config = config_loop; + break; + } } if (!config) { |