From 2349721d801d63f450e585b0938f76abd5150e79 Mon Sep 17 00:00:00 2001 From: Jacob Erlbeck Date: Tue, 10 Sep 2013 09:07:31 +0200 Subject: vty: Replace 'enum node_type' by 'int' for last_node In this case the last_node variable may hold values that are not in enum node_type, so int is used instead. --- src/vty/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/vty/command.c b/src/vty/command.c index df2ffeab..7f76ced2 100644 --- a/src/vty/command.c +++ b/src/vty/command.c @@ -2291,7 +2291,7 @@ gDEFUN(config_exit, config_end_cmd, "end", "End current mode and change to enable mode.") { if (vty->node > ENABLE_NODE) { - enum node_type last_node = CONFIG_NODE; + int last_node = CONFIG_NODE; /* Repeatedly call go_parent until a top node is reached. */ while (vty->node > CONFIG_NODE) { -- cgit v1.2.3