From: Tollef Fog Heen Date: Thu, 17 Jul 2008 17:35:02 +0000 (+0200) Subject: Use _FILE_OFFSET_BITS rather than LARGEFILE support X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08beace10c9bef800ec95f69cf43cfc6a1850507;p=backuppcd Use _FILE_OFFSET_BITS rather than LARGEFILE support --- diff --git a/backuppcd.c b/backuppcd.c index a5cc3f8..3e12e79 100644 --- a/backuppcd.c +++ b/backuppcd.c @@ -931,7 +931,7 @@ static int backuppc_openfile(struct backuppc_dirent *dent, int flags, mode_t mod backuppc_pathunmangle(pathname); - fd = open(pathname, flags | O_LARGEFILE | O_BINARY, mode); + fd = open(pathname, flags | O_BINARY, mode); backuppc_pathmangle(pathname);