diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-11-03 20:47:50 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-11-03 20:47:50 +0000 |
commit | 15eaca1c3fadd40d41d0f61cb656923be443c577 (patch) | |
tree | fbf4c19ebb71cf021569dbc294e146162dc664d6 /newlib/libc/unix/getpass.c | |
parent | d31a862312eebff8f99e28f30d245248408b538b (diff) | |
download | cygnal-15eaca1c3fadd40d41d0f61cb656923be443c577.tar.gz cygnal-15eaca1c3fadd40d41d0f61cb656923be443c577.tar.bz2 cygnal-15eaca1c3fadd40d41d0f61cb656923be443c577.zip |
2005-11-03 Jeff Johnston <jjohnstn@redhat.com>
* libc/unix/getcwd.c: Don't use non-reentrant syscall names.
* libc/unix/getlogin.c: Ditto.
* libc/unix/getpass.c: Ditto.
* libc/unix/getut.c: Ditto.
* libc/unix/ttyname.c: Ditto.
Diffstat (limited to 'newlib/libc/unix/getpass.c')
-rw-r--r-- | newlib/libc/unix/getpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/unix/getpass.c b/newlib/libc/unix/getpass.c index db0e52d61..69327ba05 100644 --- a/newlib/libc/unix/getpass.c +++ b/newlib/libc/unix/getpass.c @@ -90,7 +90,7 @@ getpass (prompt) if (p < buf + _PASSWORD_LEN) *p++ = ch; *p = '\0'; - (void) _write (fileno (outfp), "\n", 1); + (void) write (fileno (outfp), "\n", 1); if (echo) { term.c_lflag |= ECHO; |