Skip to content

Commit

Permalink
[BZ #4130]
Browse files Browse the repository at this point in the history
	* login/utmp_file.c (setutent_file): Use O_LARGEFILE for
	open_not_cancel_2.
	(updwtmp_file): Likewise.
  • Loading branch information
Ulrich Drepper committed Mar 15, 2007
1 parent 6cb988f commit 05eb897
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
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.

[BZ #4181]
* inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
(inet6_opt_append): Don't check extlen is big enough if extbuf
Expand Down
8 changes: 4 additions & 4 deletions login/utmp_file.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1996-2002, 2003, 2004 Free Software Foundation, Inc.
/* Copyright (C) 1996-2002, 2003, 2004, 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>
and Paul Janzen <pcj@primenet.com>, 1996.
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 05eb897

Please sign in to comment.