summaryrefslogtreecommitdiff
path: root/login
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-07-12 15:00:23 +0000
committerJakub Jelinek <jakub@redhat.com>2007-07-12 15:00:23 +0000
commitfb57f90bf9967dac3e1739fc1036b83188088a22 (patch)
treeacd11efb0c3ec89e11252b0ede9a51135b2b0a1b /login
parent12affee62155ed5df5ba25438c2ca17f349306da (diff)
2007-03-15 Jakub Jelinek <jakub@redhat.com>
[BZ #4130] * login/utmp_file.c (setutent_file): Use O_LARGEFILE for open_not_cancel_2. (updwtmp_file): Likewise.
Diffstat (limited to 'login')
-rw-r--r--login/utmp_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/login/utmp_file.c b/login/utmp_file.c
index e7743bfac8..9d385b2a04 100644
--- a/login/utmp_file.c
+++ b/login/utmp_file.c
@@ -140,11 +140,11 @@ setutent_file (void)
file_name = TRANSFORM_UTMP_FILE_NAME (__libc_utmp_file_name);
- file_fd = open_not_cancel_2 (file_name, O_RDWR);
+ file_fd = open_not_cancel_2 (file_name, O_RDWR | O_LARGEFILE);
if (file_fd == -1)
{
/* Hhm, read-write access did not work. Try read-only. */
- file_fd = open_not_cancel_2 (file_name, O_RDONLY);
+ file_fd = open_not_cancel_2 (file_name, O_RDONLY | O_LARGEFILE);
if (file_fd == -1)
return 0;
}
@@ -459,7 +459,7 @@ updwtmp_file (const char *file, const struct utmp *utmp)
int fd;
/* Open WTMP file. */
- fd = open_not_cancel_2 (file, O_WRONLY);
+ fd = open_not_cancel_2 (file, O_WRONLY | O_LARGEFILE);
if (fd < 0)
return -1;