diff options
Diffstat (limited to 'time/getdate.c')
-rw-r--r-- | time/getdate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/time/getdate.c b/time/getdate.c index 524abde038..eb7b0c7f87 100644 --- a/time/getdate.c +++ b/time/getdate.c @@ -1,5 +1,5 @@ /* Convert a string representation of time to a time value. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997. @@ -145,13 +145,13 @@ __getdate_r (const char *string, struct tm *tp) if (result && *result == '\0') break; } - while (!feof (fp)); + while (!feof_unlocked (fp)); /* Free the buffer. */ free (line); /* Check for errors. */ - if (ferror (fp)) + if (ferror_unlocked (fp)) { fclose (fp); return 5; |