mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
fpurge() is not available on Windows
This commit is contained in:
parent
46448bdb07
commit
35bf369e5b
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,6 @@
|
|||
static void
|
||||
disable_echo(void)
|
||||
{
|
||||
fpurge(stdin);
|
||||
fflush(stdout);
|
||||
fflush(stderr);
|
||||
|
||||
|
@ -41,6 +40,7 @@ disable_echo(void)
|
|||
if (!isatty(0) || tcgetattr(0, &p) != 0) {
|
||||
return;
|
||||
}
|
||||
fpurge(stdin);
|
||||
p.c_lflag &= ~ECHO;
|
||||
tcsetattr(0, TCSAFLUSH, &p);
|
||||
}
|
||||
|
@ -58,7 +58,6 @@ disable_echo(void)
|
|||
static void
|
||||
enable_echo(void)
|
||||
{
|
||||
fpurge(stdin);
|
||||
fflush(stdout);
|
||||
fflush(stderr);
|
||||
|
||||
|
@ -69,6 +68,7 @@ enable_echo(void)
|
|||
if (!isatty(0) || tcgetattr(0, &p) != 0) {
|
||||
return;
|
||||
}
|
||||
fpurge(stdin);
|
||||
p.c_lflag |= ECHO;
|
||||
tcsetattr(0, TCSAFLUSH, &p);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue