diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-05-31 12:34:48 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-06-01 13:23:16 -0300 |
commit | 3cd4785ea02cc3878bf21996cf9b61b3a306447e (patch) | |
tree | 7a5f195b09eafc636ec086cca70bfc3ea209aaa6 /inet | |
parent | 87f1ec12e79a3895b33801fa816884f0d24ae7ef (diff) | |
download | glibc-3cd4785ea02cc3878bf21996cf9b61b3a306447e.tar.gz glibc-3cd4785ea02cc3878bf21996cf9b61b3a306447e.tar.xz glibc-3cd4785ea02cc3878bf21996cf9b61b3a306447e.zip |
inet: Use 64 bit stat for ruserpass (BZ# 29210)
This is a missing spot initially from 52a5fe70a2c77935. Checked on i686-linux-gnu.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/ruserpass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inet/ruserpass.c b/inet/ruserpass.c index d61a72877d..75e2a06552 100644 --- a/inet/ruserpass.c +++ b/inet/ruserpass.c @@ -95,7 +95,7 @@ ruserpass (const char *host, const char **aname, const char **apass) char *hdir, *buf, *tmp; char myname[1024], *mydomain; int t, usedefault = 0; - struct stat64 stb; + struct __stat64_t64 stb; hdir = __libc_secure_getenv("HOME"); if (hdir == NULL) { @@ -174,7 +174,7 @@ next: break; case PASSWD: if (strcmp(*aname, "anonymous") && - __fstat64(fileno(cfile), &stb) >= 0 && + __fstat64_time64(fileno(cfile), &stb) >= 0 && (stb.st_mode & 077) != 0) { warnx(_("Error: .netrc file is readable by others.")); warnx(_("Remove 'password' line or make file unreadable by others.")); |