diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-05 11:57:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-05 11:57:59 +0000 |
commit | 77ccaba1fa58f871e797ced648c2966842e477db (patch) | |
tree | fec432e9338d6956a0a9b6e5a03d330ff580bb06 /inet | |
parent | eb27c43f02ec7890c19f424de458df903745db5d (diff) |
Update.
1998-07-05 11:54 Ulrich Drepper <drepper@cygnus.com>
* Versions: Add pthread_attr_init ti GLIBC_2.1 version in libc.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/ruserpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inet/ruserpass.c b/inet/ruserpass.c index 9c0905132e..3cdacd1625 100644 --- a/inet/ruserpass.c +++ b/inet/ruserpass.c @@ -265,7 +265,7 @@ token() int c; struct toktab *t; - if (feof(cfile) || ferror(cfile)) + if (feof_unlocked(cfile) || ferror_unlocked(cfile)) return (0); while ((c = getc_unlocked(cfile)) != EOF && (c == '\n' || c == '\t' || c == ' ' || c == ',')) |