diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 34a5b65aa..f71f6a5e3 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -5626,6 +5626,8 @@ exptilde(char *startp, char *p, int flags) | |||
5626 | if (*name == '\0') { | 5626 | if (*name == '\0') { |
5627 | home = lookupvar(homestr); | 5627 | home = lookupvar(homestr); |
5628 | } else { | 5628 | } else { |
5629 | if (ENABLE_PLATFORM_MINGW32) | ||
5630 | goto lose; | ||
5629 | pw = getpwnam(name); | 5631 | pw = getpwnam(name); |
5630 | if (pw == NULL) | 5632 | if (pw == NULL) |
5631 | goto lose; | 5633 | goto lose; |