busybox: 1.22.1: correct ash patch

Upstream initially put the wrong patch online:

http://lists.busybox.net/pipermail/busybox/2014-January/080364.html

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2014-01-23 12:47:19 +01:00
parent 1052a4a75f
commit 99fa554bd6
1 changed files with 11 additions and 20 deletions

View File

@ -1,20 +1,11 @@
--- busybox-1.22.1/procps/top.c --- busybox-1.22.1/shell/ash.c
+++ busybox-1.22.1-ash/procps/top.c +++ busybox-1.22.1-ash/shell/ash.c
@@ -917,17 +917,12 @@ enum { @@ -13014,7 +13014,7 @@ init(void)
#if ENABLE_FEATURE_USE_TERMIOS setvar2("PPID", utoa(getppid()));
static unsigned handle_input(unsigned scan_mask, unsigned interval) #if ENABLE_ASH_BASH_COMPAT
{ p = lookupvar("SHLVL");
- struct pollfd pfd[1]; - setvar2("SHLVL", utoa(p ? atoi(p) + 1 : 1));
- + setvar("SHLVL", utoa((p ? atoi(p) : 0) + 1), VEXPORT);
if (option_mask32 & OPT_EOF) { #endif
/* EOF on stdin ("top </dev/null") */ p = lookupvar("PWD");
sleep(interval); if (p) {
return scan_mask;
}
- pfd[0].fd = 0;
- pfd[0].events = POLLIN;
-
while (1) {
int32_t c;