diff options
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index f9d59e50e..e24b74c03 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -14312,9 +14312,9 @@ procargs(char **argv) | |||
14312 | } | 14312 | } |
14313 | if (mflag == 2) | 14313 | if (mflag == 2) |
14314 | mflag = iflag; | 14314 | mflag = iflag; |
14315 | /* Unset options which weren't explicitly set or unset */ | ||
14315 | for (i = 0; i < NOPTS; i++) | 14316 | for (i = 0; i < NOPTS; i++) |
14316 | if (optlist[i] == 2) | 14317 | optlist[i] &= 1; /* same effect as "if (optlist[i] == 2) optlist[i] = 0;" */ |
14317 | optlist[i] = 0; | ||
14318 | #if DEBUG == 2 | 14318 | #if DEBUG == 2 |
14319 | debug = 1; | 14319 | debug = 1; |
14320 | #endif | 14320 | #endif |