mirror of git://sourceware.org/git/glibc.git
* nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
This commit is contained in:
parent
3dead50099
commit
a8d131a717
|
@ -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>
|
2005-09-20 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl.
|
* sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl.
|
||||||
|
|
|
@ -44,7 +44,7 @@ init_logfile (void)
|
||||||
{
|
{
|
||||||
if (logfilename)
|
if (logfilename)
|
||||||
{
|
{
|
||||||
dbgout = fopen (logfilename, "a");
|
dbgout = fopen64 (logfilename, "a");
|
||||||
return dbgout == NULL ? 0 : 1;
|
return dbgout == NULL ? 0 : 1;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue