diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index dc2115414..e32731d41 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -15059,7 +15059,7 @@ find_command(char *name, struct cmdentry *entry, int act, const char *path) | |||
15059 | entry->u.index = -1; | 15059 | entry->u.index = -1; |
15060 | entry->cmdtype = CMDNORMAL; | 15060 | entry->cmdtype = CMDNORMAL; |
15061 | fullname = stack_add_ext_space(name); | 15061 | fullname = stack_add_ext_space(name); |
15062 | if (add_win32_extension(fullname) || file_is_executable(fullname)) { | 15062 | if (add_win32_extension(fullname)) { |
15063 | return; | 15063 | return; |
15064 | } else if (unix_path(name)) { | 15064 | } else if (unix_path(name)) { |
15065 | name = (char *)bb_basename(name); | 15065 | name = (char *)bb_basename(name); |