From owner-freebsd-current Sat Mar 21 21:02:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05886 for freebsd-current-outgoing; Sat, 21 Mar 1998 21:02:59 -0800 (PST) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from fly.HiWAAY.net (root@fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05878 for ; Sat, 21 Mar 1998 21:02:57 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from bonsai.hiwaay.net (tnt2-103.HiWAAY.net [208.147.148.103]) by fly.HiWAAY.net (8.8.8/8.8.6) with SMTP id XAA29723; Sat, 21 Mar 1998 23:02:50 -0600 (CST) Message-ID: <35149B84.446B9B3D@hiwaay.net> Date: Sat, 21 Mar 1998 23:03:00 -0600 From: Steve Price X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Cory Kempf CC: current@FreeBSD.ORG, bde@zeta.org.au Subject: Re: Where does one report bugs? References: <199803212200.PAA06995@usr09.primenet.com>; from Terry Lambert on Sat, Mar 21, 1998 at 10:00:18PM +0000 <199803202025.PAA17448@dyson.iquest.net> <199803212200.PAA06995@usr09.primenet.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Cory Kempf wrote: > > I checked out a (mostly) current system, I think. > > Build world fails, because /usr/src/lib/termcap/termcap.h has a prototype > for __set_ospeed(), and tospeed.c in the same directory has a different > definition. > > So, who do I report this to, so the fix can be applied? (the fix being > either move the def'n of speed_t from tospeed.c to termcap.h, or change > __set_ospeed() to accept an unsigned long). > To report a bug use http://www.freebsd.org/send-pr.html The attached patch seems to fix the problem. Steve Index: tospeed.c =================================================================== RCS file: /u/FreeBSD/cvs/src/lib/libtermcap/tospeed.c,v retrieving revision 1.2 diff -u -r1.2 tospeed.c --- tospeed.c 1995/08/05 21:22:02 1.2 +++ tospeed.c 1998/03/22 04:58:02 @@ -52,7 +52,7 @@ {-1, -1} }; -void __set_ospeed(speed_t speed) +void __set_ospeed(unsigned long speed) { struct stable *stable; > +C > > -- > Thinking of purchasing RAM from the Chip Merchant? Please read this first: > > > Cory Kempf Macintosh / Unix Consulting & Software Development > ckempf@enigami.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message