mirror of https://github.com/mirror/busybox.git
reset: before calling execvp(), reset needs to flush stdout
Signed-off-by: Glenn Matthews <glmatthe@cisco.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>1_27_stable
parent
74c2215086
commit
02a2a278f6
console-tools
|
@ -56,6 +56,8 @@ int reset_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
|||
#if ENABLE_STTY
|
||||
return stty_main(2, (char**)args);
|
||||
#else
|
||||
/* Make sure stdout gets drained before we execvp */
|
||||
fflush_all();
|
||||
execvp("stty", (char**)args);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue