diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-01-07 11:33:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-01-07 11:33:02 (GMT) |
commit | 7b79011075ebaea03aecd04ccb351f56681469a4 (patch) | |
tree | 4f59f33040784b251afe53c69d42f4621c1f2c9b | |
parent | 86b9cc18cdb1b06c9e34a429885a716f2c3e6a04 (diff) | |
download | tcl-7b79011075ebaea03aecd04ccb351f56681469a4.zip tcl-7b79011075ebaea03aecd04ccb351f56681469a4.tar.gz tcl-7b79011075ebaea03aecd04ccb351f56681469a4.tar.bz2 |
Fix [f01d74dc8c]: DEFAULT_COPY_BLOCK_SIZE has incorrect value
-rw-r--r-- | unix/tclUnixFCmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index 3b1b6ca..a1a409e 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -564,7 +564,7 @@ TclUnixCopyFile( #define BINMODE #endif /* DJGPP */ -#define DEFAULT_COPY_BLOCK_SIZE 4069 +#define DEFAULT_COPY_BLOCK_SIZE 4096 if ((srcFd = TclOSopen(src, O_RDONLY BINMODE, 0)) < 0) { /* INTL: Native */ return TCL_ERROR; |