From 08beace10c9bef800ec95f69cf43cfc6a1850507 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Thu, 17 Jul 2008 19:35:02 +0200 Subject: [PATCH] Use _FILE_OFFSET_BITS rather than LARGEFILE support --- backuppcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5