From owner-freebsd-bugs Mon Apr 17 9:20:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3451137B932 for ; Mon, 17 Apr 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA29120; Mon, 17 Apr 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 0534137B644 for ; Mon, 17 Apr 2000 09:12:57 -0700 (PDT) (envelope-from housley@thehousleys.net) Received: from baby.int.thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.9.3/8.9.3) with ESMTP id MAA57526 for ; Mon, 17 Apr 2000 12:12:56 -0400 (EDT) Received: (from housley@localhost) by baby.int.thehousleys.net (8.9.3/8.9.3) id MAA01231; Mon, 17 Apr 2000 12:12:55 -0400 (EDT) Message-Id: <200004171612.MAA01231@baby.int.thehousleys.net> Date: Mon, 17 Apr 2000 12:12:55 -0400 (EDT) From: James Housley Reply-To: housley@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/18058: ctm: error with large file in cvs-cur.6200xEmpty.gz Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18058 >Category: bin >Synopsis: ctm: error with large file in cvs-cur.6200xEmpty.gz >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 17 09:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James Housley >Release: FreeBSD 3.4-STABLE i386 >Organization: The Housleys dot Net >Environment: FreeBSD 2.2.8, FreeBSD 3.x, FreeBSD 4.x >Description: src/usr.sbin/ctm/ctm/ctm_input.c limits files to 10Meg (10485760). cvs-cur.6200xEmpty.gz has a file, src/sys/dev/isp/asm_pci.h,v that is greather than 11Meg, actually 11913588 bytes. >How-To-Repeat: mkdir /usr/FREEBSD_CVS ctm -F -b /usr/FREEBSD_CVS -e src/sys/dev/isp/asm_pci.h,v >Fix: This fix will work, don't know if it is the desired one by the maintainers. --- ctm.h Fri Sep 3 08:24:20 1999 +++ ctm.h.new Mon Apr 17 12:10:42 2000 @@ -26,7 +26,7 @@ #include #define VERSION "2.0" -#define MAXSIZE (1024*1024*10) +#define MAXSIZE (1024*1024*20) #define SUBSUFF ".ctm" #define TMPSUFF ".ctmtmp" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message