From 8fb3ece145682761ee20960c5eac03ffacdb7464 Mon Sep 17 00:00:00 2001 From: Greg Alexander Date: Tue, 21 Jun 2016 09:18:39 -0400 Subject: [PATCH] turns out all rsync was missing for 64-bit files was #define HAVE_STRUCT_STAT64 1 --- NOTES | 1 - rsync/config.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/NOTES b/NOTES index f63b26f..14db462 100644 --- a/NOTES +++ b/NOTES @@ -220,7 +220,6 @@ write()s are outstanding. That seems to do the trick. XXX - add support for lseek64 and stat64 to sftp -XXX - enable support for lseek64 and stat64 in rsync XXX - what about scp? XXX - test on large files XXX - if you remove it from the recent apps list, does it stop the service?? diff --git a/rsync/config.h b/rsync/config.h index e24fc7a..78dbfce 100644 --- a/rsync/config.h +++ b/rsync/config.h @@ -65,5 +65,6 @@ #define HAVE_SECURE_MKSTEMP 1 #define HAVE_FCHMOD 1 #define HAVE_SETMODE 1 +#define HAVE_STRUCT_STAT64 1 #endif /* __RSYNC_CONFIG_H */