Fix: remove duplicate judgement of (have_name < 0) in kronosnetd/vty_cli_cmds.c
In line 1087 of kronosnetd/vty_cli_cmds.c, there is a judgement of
(have_name < 0), when have_name < 0, it will return 0, which make
the judge of have_name < 0 in line 1094 will never be executed.
Remove the unnecessary judgement.