diff options
author | mckay <mckay@FreeBSD.org> | 2001-02-19 12:04:46 +0000 |
---|---|---|
committer | mckay <mckay@FreeBSD.org> | 2001-02-19 12:04:46 +0000 |
commit | b07261d9bb6b390f9a03267cf8faadeeb6d815f5 (patch) | |
tree | ad2f2cd437c744c9260d850147c635b161e37eac /usr.sbin/ctm | |
parent | 805aa03c9a4c65047f08a804151e59a8fd725989 (diff) | |
download | FreeBSD-src-b07261d9bb6b390f9a03267cf8faadeeb6d815f5.zip FreeBSD-src-b07261d9bb6b390f9a03267cf8faadeeb6d815f5.tar.gz |
There is an arbitrary file size limit in ctm of 20MB. By my reckoning,
ports/INDEX,v is currently 19.97MB and will blow this limit on the next
update. Let's try doubling the limit again, to give us time to get
around to removing the limit altogether.
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 b4ed57a..5ab558d 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*20) +#define MAXSIZE (1024*1024*40) #define SUBSUFF ".ctm" #define TMPSUFF ".ctmtmp" |