aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-04-15 18:48:12 -0700
committerRob Landley <rob@landley.net>2016-04-16 19:58:56 -0500
commit00a60fcaa318a437ab66d9a6bd6c065a019a8fad (patch)
tree6dbf8f2731b1b4a861dddc385d5e72cc2d512146 /toys
parent406d4c978ac841b34c8725e67da9962957da1848 (diff)
downloadtoybox-00a60fcaa318a437ab66d9a6bd6c065a019a8fad.tar.gz
Fix "ssh top".
The ps.c change allows us to start. The interestingtimes.c change allows us to clean up properly afterwards if you ^C out (which you usually do). Tested with both ssh and "adb shell" (the latter being where I noticed the problem).
Diffstat (limited to 'toys')
-rw-r--r--toys/posix/ps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ps.c b/toys/posix/ps.c
index a1e1981a..5235a64a 100644
--- a/toys/posix/ps.c
+++ b/toys/posix/ps.c
@@ -1417,7 +1417,7 @@ static void top_setup(char *defo, char *defk)
TT.top.d *= 1000;
if (toys.optflags&FLAG_b) TT.width = TT.height = 99999;
else {
- xset_terminal(0, 1, 0);
+ set_terminal(0, 1, 0);
sigatexit(tty_sigreset);
xsignal(SIGWINCH, generic_signal);
printf("\033[?25l\033[0m");