diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index f8207a6cc..63f039df4 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -2293,7 +2293,8 @@ updatepwd(const char *dir) break; } break; - } else if (p[1] == '\0') + } + if (p[1] == '\0') break; /* fall through */ default: |