diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-09-17 21:17:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-09-17 21:17:35 +0000 |
commit | dc180d14427fea95d57e8ad10953d271a47e6571 (patch) | |
tree | 9ec8d9cdeace0d28093b850dd9cc94645aae995e | |
parent | 6c32a8add480f2b7b86809d3d79a4555fa884c7f (diff) | |
download | busybox-w32-dc180d14427fea95d57e8ad10953d271a47e6571.tar.gz busybox-w32-dc180d14427fea95d57e8ad10953d271a47e6571.tar.bz2 busybox-w32-dc180d14427fea95d57e8ad10953d271a47e6571.zip |
re-enable the cursor, in case it got disabled
-Erik
-rw-r--r-- | console-tools/reset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/reset.c b/console-tools/reset.c index 84cbb447a..0039afa69 100644 --- a/console-tools/reset.c +++ b/console-tools/reset.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Mini reset implementation for busybox | 3 | * Mini reset implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen | 5 | * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen |
6 | * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> | 6 | * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org> |
7 | * Written by Erik Andersen and Kent Robotti <robotti@metconnect.com> | 7 | * Written by Erik Andersen and Kent Robotti <robotti@metconnect.com> |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
@@ -28,7 +28,7 @@ | |||
28 | 28 | ||
29 | extern int reset_main(int argc, char **argv) | 29 | extern int reset_main(int argc, char **argv) |
30 | { | 30 | { |
31 | printf("\033c"); | 31 | printf("\033[?25h\033c"); |
32 | return EXIT_SUCCESS; | 32 | return EXIT_SUCCESS; |
33 | } | 33 | } |
34 | 34 | ||