From 74030487386e6458921590b65e5051ab89942cee Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 10 Dec 2008 13:57:21 +0000 Subject: [PATCH] (trunk libT) #1580: use a 65K read buffer for the hash check, even for embedded systems. --- libtransmission/inout.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libtransmission/inout.c b/libtransmission/inout.c index 7a662b1e2..d857c8278 100644 --- a/libtransmission/inout.c +++ b/libtransmission/inout.c @@ -30,11 +30,7 @@ #include "torrent.h" #include "utils.h" -#ifdef TR_EMBEDDED - #define TR_HASH_BUFSIZE (16*1024) -#else - #define TR_HASH_BUFSIZE (64*1024) -#endif +#define TR_HASH_BUFSIZE (64*1024) /**** ***** Low-level IO functions