* nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
authorRoland McGrath <roland@gnu.org>
Tue, 20 Sep 2005 20:15:15 +0000 (20:15 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 20 Sep 2005 20:15:15 +0000 (20:15 +0000)
ChangeLog
nscd/dbg_log.c

index 02be637..ad4cde0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index afa06dc..4b88430 100644 (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;