diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-17 11:49:00 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-17 11:49:00 -0700 |
commit | fbc723bb37277ad78972c3327dad44a994ab7a0b (patch) | |
tree | e114007b321cab04dc5a7ae7552eb647bb033c8f /sysdeps/posix | |
parent | a0844057776f565316fa56d865266b4995434774 (diff) | |
download | glibc-fbc723bb37277ad78972c3327dad44a994ab7a0b.tar glibc-fbc723bb37277ad78972c3327dad44a994ab7a0b.tar.gz glibc-fbc723bb37277ad78972c3327dad44a994ab7a0b.tar.bz2 glibc-fbc723bb37277ad78972c3327dad44a994ab7a0b.zip |
Fix typo in last change.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 2638736d17..81e928ab91 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -1885,7 +1885,7 @@ save_gaiconf_mtime (const struct stat64 *st) static inline bool check_gaiconf_mtime (const struct stat64 *st) { - return st->mtime == gaiconf_mtime; + return st->st_mtime == gaiconf_mtime; } #endif |