aboutsummaryrefslogtreecommitdiff
path: root/nss/nss_readline.c
diff options
context:
space:
mode:
Diffstat (limited to 'nss/nss_readline.c')
-rw-r--r--nss/nss_readline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/nss_readline.c b/nss/nss_readline.c
index a2f397a..ddf2b89 100644
--- a/nss/nss_readline.c
+++ b/nss/nss_readline.c
@@ -42,7 +42,7 @@ __nss_readline (FILE *fp, char *buf, size_t len, off64_t *poffset)
buf[len - 1] = '\xff'; /* Marker to recognize truncation. */
if (__fgets_unlocked (buf, len, fp) == NULL)
{
- if (feof_unlocked (fp))
+ if (__feof_unlocked (fp))
{
__set_errno (ENOENT);
return ENOENT;