diff options
author | chuckr <chuckr@FreeBSD.org> | 2000-06-21 13:34:16 +0000 |
---|---|---|
committer | chuckr <chuckr@FreeBSD.org> | 2000-06-21 13:34:16 +0000 |
commit | 45479f641cf92aa05ca61bbcfef512b95a1b9062 (patch) | |
tree | 7a5918f35264cbc8a8cd940240ebcae57f5efdd7 /usr.sbin/ctm | |
parent | 36a6674fdc6acd1ad730917382308df8f3afd93e (diff) | |
download | FreeBSD-src-45479f641cf92aa05ca61bbcfef512b95a1b9062.zip FreeBSD-src-45479f641cf92aa05ca61bbcfef512b95a1b9062.tar.gz |
Doubling the size of MAXSIZE because of large delta indigestion.
Submitted by: Stefan Esser.
Diffstat (limited to 'usr.sbin/ctm')
-rw-r--r-- | usr.sbin/ctm/ctm/ctm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ctm/ctm/ctm.h b/usr.sbin/ctm/ctm/ctm.h index 437672f..b4ed57a 100644 --- a/usr.sbin/ctm/ctm/ctm.h +++ b/usr.sbin/ctm/ctm/ctm.h @@ -26,7 +26,7 @@ #include <sys/time.h> #define VERSION "2.0" -#define MAXSIZE (1024*1024*10) +#define MAXSIZE (1024*1024*20) #define SUBSUFF ".ctm" #define TMPSUFF ".ctmtmp" |