diff options
author | jcid <devnull@localhost> | 2008-06-20 16:11:47 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-06-20 16:11:47 +0200 |
commit | c304dd7b7bf988f56026ba8222f0b5d65c6f23bc (patch) | |
tree | 2179d4893f13b8ca1c7453569bda30624425fc80 | |
parent | 2106e795bd10c29fdbcfeefa25bb6d2d0d5dca55 (diff) |
- Incremented the HUGE_FILESIZE threshold to 15 MB
-rw-r--r-- | src/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache.c b/src/cache.c index c178b8b3..4786a627 100644 --- a/src/cache.c +++ b/src/cache.c @@ -44,7 +44,7 @@ /* Maximun initial size for the automatically-growing data buffer */ #define MAX_INIT_BUF 1024*1024 /* Maximum filesize for a URL, before offering a download */ -#define HUGE_FILESIZE 5*1024*1024 +#define HUGE_FILESIZE 15*1024*1024 /* * Local data types |