mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 13:40:10 +01:00
cli: avoid redundant "if" check that is always TRUE in nmcli_editor_tab_completion()
This commit is contained in:
parent
6f0dadabd7
commit
b93e12cb43
1 changed files with 1 additions and 1 deletions
|
|
@ -6282,7 +6282,7 @@ nmcli_editor_tab_completion (const char *text, int start, int end)
|
|||
rl_completion_append_character = '.';
|
||||
} else
|
||||
generator_func = gen_property_names;
|
||||
} else if (num >= 3) {
|
||||
} else {
|
||||
if (num == 3 && should_complete_files (NULL, line))
|
||||
rl_attempted_completion_over = 0;
|
||||
else if (should_complete_vpn_uuids (NULL, line)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue