mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
lineedit: fix completion with applet names. closes 9361
Patch by Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
5ccb0e92fa
commit
1336052a49
1 changed files with 1 additions and 1 deletions
|
|
@ -782,7 +782,7 @@ static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
|
|||
pf_len = strlen(pfind);
|
||||
|
||||
#if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
|
||||
if (type == FIND_EXE_ONLY) {
|
||||
if (type == FIND_EXE_ONLY && !dirbuf) {
|
||||
const char *p = applet_names;
|
||||
|
||||
while (*p) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue