From 2860b2530e7391b52fc6f0d500981e78a4618551 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 3 Apr 2023 14:01:36 +0200 Subject: 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 --- shell/ash.c | 1 - 1 file changed, 1 deletion(-) 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) if (!len) break; p = stackblock(); - break; if (*p == '\0') continue; for (q = p; *q; q++) -- cgit v1.2.1