aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2023-04-03 14:01:36 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2023-04-03 14:01:36 +0200
commit2860b2530e7391b52fc6f0d500981e78a4618551 (patch)
tree545b30045d1ef00384804a23cf13195264e5ab62 /shell/ash.c
parent6748e6494c223b779a204b370e395f82c8e5247f (diff)
downloadbusybox-w32-2860b2530e7391b52fc6f0d500981e78a4618551.tar.gz
busybox-w32-2860b2530e7391b52fc6f0d500981e78a4618551.tar.bz2
busybox-w32-2860b2530e7391b52fc6f0d500981e78a4618551.zip
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>
Diffstat (limited to '')
-rw-r--r--shell/ash.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 2ec7cfb0e..55c0acc16 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11288,7 +11288,6 @@ chkmail(void)
11288 if (!len) 11288 if (!len)
11289 break; 11289 break;
11290 p = stackblock(); 11290 p = stackblock();
11291 break;
11292 if (*p == '\0') 11291 if (*p == '\0')
11293 continue; 11292 continue;
11294 for (q = p; *q; q++) 11293 for (q = p; *q; q++)