提交 508f15cd 编写于 作者: B Bodo Möller

For MSDOS, the tty filename still is "con", not "/dev/tty" ...

上级 52c0d300
......@@ -436,9 +436,14 @@ static int open_console(UI *ui)
tty_in=stdin;
tty_out=stderr;
#else
if ((tty_in=fopen("/dev/tty","r")) == NULL)
# ifdef OPENSSL_SYS_MSDOS
# define DEV_TTY "con"
# else
# define DEV_TTY "/dev/tty"
# endif
if ((tty_in=fopen(DEV_TTY,"r")) == NULL)
tty_in=stdin;
if ((tty_out=fopen("/dev/tty","w")) == NULL)
if ((tty_out=fopen(DEV_TTY,"w")) == NULL)
tty_out=stderr;
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册