diff options
Diffstat (limited to 'src/vty')
| -rw-r--r-- | src/vty/command.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vty/command.c b/src/vty/command.c index 355fb5d8..21b26b4e 100644 --- a/src/vty/command.c +++ b/src/vty/command.c @@ -1950,7 +1950,7 @@ static char **cmd_complete_command_real(vector vline, struct vty *vty,  		/* In case of 'command \t' pattern.  Do you need '?' command at  		   the end of the line. */ -		if (*(char *)vector_slot(vline, index) == '\0') +		if (vector_slot(vline, index) == '\0')  			*status = CMD_ERR_NOTHING_TODO;  		else  			*status = CMD_ERR_NO_MATCH;  | 
