diff options
Diffstat (limited to 'misc/getpass.c')
-rw-r--r-- | misc/getpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/getpass.c b/misc/getpass.c index 70562e5..52dab94 100644 --- a/misc/getpass.c +++ b/misc/getpass.c @@ -56,7 +56,7 @@ getpass (prompt) /* Try to write to and read from the terminal if we can. If we can't open the terminal, use stderr and stdin. */ - in = fopen ("/dev/tty", "w+"); + in = fopen ("/dev/tty", "w+c"); if (in == NULL) { in = stdin; |