Date: Sat, 21 Mar 1998 23:03:00 -0600 From: Steve Price <sprice@hiwaay.net> To: Cory Kempf <ckempf@enigami.com> Cc: current@FreeBSD.ORG, bde@zeta.org.au Subject: Re: Where does one report bugs? Message-ID: <35149B84.446B9B3D@hiwaay.net> References: <199803212200.PAA06995@usr09.primenet.com>; from Terry Lambert on Sat, Mar 21, 1998 at 10:00:18PM %2B0000 <199803202025.PAA17448@dyson.iquest.net> <199803212200.PAA06995@usr09.primenet.com> <v04003a0fb13a44184a9a@[208.140.182.45]>
next in thread | previous in thread | raw e-mail | index | archive | help
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: > <http://www.enigami.com/~ckempf/chipmerchant.html> > > Cory Kempf Macintosh / Unix Consulting & Software Development > ckempf@enigami.com <http://www.enigami.com/~ckempf/> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?35149B84.446B9B3D>