From: Roland McGrath Date: Tue, 20 Sep 2005 20:15:15 +0000 (+0000) Subject: * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen. X-Git-Tag: cvs/fedora-glibc-20051003T2040~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8d131a717d14bd359d730b42205f304b58ea27a;p=thirdparty%2Fglibc.git * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen. --- diff --git a/ChangeLog b/ChangeLog index 02be637b26d..ad4cde07f90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-09-20 Jakub Jelinek + + * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen. + 2005-09-20 Roland McGrath * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl. diff --git a/nscd/dbg_log.c b/nscd/dbg_log.c index afa06dcbe91..4b8843037b2 100644 --- a/nscd/dbg_log.c +++ b/nscd/dbg_log.c @@ -44,7 +44,7 @@ init_logfile (void) { if (logfilename) { - dbgout = fopen (logfilename, "a"); + dbgout = fopen64 (logfilename, "a"); return dbgout == NULL ? 0 : 1; } return 1;