mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-05 03:47:45 +03:00
Remove fpurge() calls
This commit is contained in:
parent
98ea87a872
commit
1ccf3eaecb
1 changed files with 0 additions and 2 deletions
|
@ -40,7 +40,6 @@ disable_echo(void)
|
|||
if (!isatty(0) || tcgetattr(0, &p) != 0) {
|
||||
return;
|
||||
}
|
||||
fpurge(stdin);
|
||||
p.c_lflag &= ~ECHO;
|
||||
tcsetattr(0, TCSAFLUSH, &p);
|
||||
}
|
||||
|
@ -68,7 +67,6 @@ 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