1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 09:48:08 +00:00

turns out all rsync was missing for 64-bit files was

#define HAVE_STRUCT_STAT64 1
This commit is contained in:
Greg Alexander 2016-06-21 09:18:39 -04:00
parent 62dbd9c5aa
commit 8fb3ece145
2 changed files with 1 additions and 1 deletions

1
NOTES
View File

@ -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??

View File

@ -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 */