diff options
author | Denys Vlasenko | 2023-04-03 14:01:36 +0200 |
---|---|---|
committer | Denys Vlasenko | 2023-04-25 16:47:22 +0200 |
commit | 07bc5de67b2724a6ed9bb980f3439504b67e20ec (patch) | |
tree | aa2c23079c88a6bf10230ea05bf141ec2b7a4e69 | |
parent | 64e967fabb1cf6c190b76f51c69e0ecb5fa49be5 (diff) | |
download | busybox-07bc5de67b2724a6ed9bb980f3439504b67e20ec.zip busybox-07bc5de67b2724a6ed9bb980f3439504b67e20ec.tar.gz |
ash: fix broken new mail detection
Mea culpa, in "Do not allocate stack string in padvance" commit
(I left an extraneous "break" statement).
function old new delta
cmdloop 329 398 +69
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 18ccc13..c15bce7 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -11287,7 +11287,6 @@ chkmail(void) if (!len) break; p = stackblock(); - break; if (*p == '\0') continue; for (q = p; *q; q++) |