summaryrefslogtreecommitdiff
path: root/src/filelist.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-10-09 16:51:59 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-10-09 16:51:59 +0200
commitc50444914b7236b549370c15d2f37703db41397a (patch)
tree1552b01374831f339ed8b0e10c7a47f3c671ba06 /src/filelist.c
parent43d52da223801d75af29fb2ed6786689796fa4af (diff)
Add stat64 (-D_FILE_OFFSET_BITS=64) makeflag to support 64bit CIFS shares on 32bit hosts
Diffstat (limited to 'src/filelist.c')
-rw-r--r--src/filelist.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/filelist.c b/src/filelist.c
index 177711c..050246e 100644
--- a/src/filelist.c
+++ b/src/filelist.c
@@ -172,6 +172,10 @@ void add_file_to_filelist_recursively(char *origpath, unsigned char level)
if (!opt.quiet)
weprintf("you don't have permission to open %s - skipping", path);
break;
+ case EOVERFLOW:
+ weprintf("Cannot open %s - EOVERFLOW.\n"
+ "Recompile with stat64=1 to fix this");
+ break;
default:
if (!opt.quiet)
weprintf("couldn't open %s", path);