From owner-cvs-all Wed May 6 01:20:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA08107 for cvs-all-outgoing; Wed, 6 May 1998 01:20:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA08034; Wed, 6 May 1998 01:20:22 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id SAA03744; Wed, 6 May 1998 18:17:12 +1000 Date: Wed, 6 May 1998 18:17:12 +1000 From: Bruce Evans Message-Id: <199805060817.SAA03744@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys termios.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > sys/sys termios.h > Log: > Change a couple of long types to int to match NetBSD so that termios > works on alpha without any modifications. Unsigned long was correct (*). Unsigned int is incorrect because ints may be 16-bit. NetBSD should be more concerned about this than us. (*) but not best. speed_t and tcflag_t should be u_int if ints have about 32 bits or more, otherwise u_long. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message