summaryrefslogtreecommitdiff
path: root/nscd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-09-20 20:15:15 +0000
committerRoland McGrath <roland@gnu.org>2005-09-20 20:15:15 +0000
commita8d131a717d14bd359d730b42205f304b58ea27a (patch)
tree025c6889af64f7e8d1bb3a0937b8594f3da52f1e /nscd
parent3dead500998b2bad2fd7c2869ae943915e4d03d2 (diff)
* nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
Diffstat (limited to 'nscd')
-rw-r--r--nscd/dbg_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nscd/dbg_log.c b/nscd/dbg_log.c
index afa06dcbe9..4b8843037b 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;