re-enable the cursor, in case it got disabled
authorEric Andersen <andersen@codepoet.org>
Tue, 17 Sep 2002 21:17:35 +0000 (21:17 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 17 Sep 2002 21:17:35 +0000 (21:17 -0000)
 -Erik

console-tools/reset.c

index 84cbb447ac870216d5c569d524e4cf074a5ac4d5..0039afa693b21e974e68b30be4c5bdf5b429f6bb 100644 (file)
@@ -3,7 +3,7 @@
  * Mini reset implementation for busybox
  *
  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
- * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
+ * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
  * Written by Erik Andersen and Kent Robotti <robotti@metconnect.com>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -28,7 +28,7 @@
 
 extern int reset_main(int argc, char **argv)
 {
-       printf("\033c");
+          printf("\033[?25h\033c");
        return EXIT_SUCCESS;
 }