* nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.

This commit is contained in:
Roland McGrath 2005-09-20 20:15:15 +00:00
parent 3dead50099
commit a8d131a717
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-09-20 Jakub Jelinek <jakub@redhat.com>
* nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
2005-09-20 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl.

View File

@ -44,7 +44,7 @@ init_logfile (void)
{
if (logfilename)
{
dbgout = fopen (logfilename, "a");
dbgout = fopen64 (logfilename, "a");
return dbgout == NULL ? 0 : 1;
}
return 1;