diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/getdate.c | 2 | ||||
-rw-r--r-- | time/tzfile.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/time/getdate.c b/time/getdate.c index d5c01b8446..ddd97ba277 100644 --- a/time/getdate.c +++ b/time/getdate.c @@ -121,7 +121,7 @@ __getdate_r (const char *string, struct tm *tp) if (datemsk == NULL || *datemsk == '\0') return 1; - if (stat64 (datemsk, &st) < 0) + if (__stat64 (datemsk, &st) < 0) return 3; if (!S_ISREG (st.st_mode)) diff --git a/time/tzfile.c b/time/tzfile.c index af6da1bf00..e8084a86e8 100644 --- a/time/tzfile.c +++ b/time/tzfile.c @@ -152,7 +152,7 @@ __tzfile_read (const char *file, size_t extra, char **extrap) /* If we were already using tzfile, check whether the file changed. */ struct stat64 st; if (was_using_tzfile - && stat64 (file, &st) == 0 + && __stat64 (file, &st) == 0 && tzfile_ino == st.st_ino && tzfile_dev == st.st_dev && tzfile_mtime == st.st_mtime) goto done; /* Nothing to do. */ @@ -164,7 +164,7 @@ __tzfile_read (const char *file, size_t extra, char **extrap) goto ret_free_transitions; /* Get information about the file we are actually using. */ - if (fstat64 (__fileno (f), &st) != 0) + if (__fstat64 (__fileno (f), &st) != 0) goto lose; free ((void *) transitions); |