From owner-cvs-src@FreeBSD.ORG Tue Aug 19 18:03:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AD6916A4BF; Tue, 19 Aug 2003 18:03:09 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C71D643FAF; Tue, 19 Aug 2003 18:03:08 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h7K136QX090087; Tue, 19 Aug 2003 18:03:06 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h7K134vB090086; Tue, 19 Aug 2003 18:03:04 -0700 (PDT) Date: Tue, 19 Aug 2003 18:03:04 -0700 From: "David O'Brien" To: Marcel Moolenaar Message-ID: <20030820010304.GA90059@dragon.nuxi.com> References: <200308192039.h7JKdni9081097@repoman.freebsd.org> <20030819210421.GA28597@athlon.pn.xcllnt.net> <200308192132.h7JLWnZk035752@khavrinen.lcs.mit.edu> <20030819220248.GA91232@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030819220248.GA91232@athlon.pn.xcllnt.net> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Garrett Wollman Subject: Re: cvs commit: src/include unistd.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Aug 2003 01:03:09 -0000 On Tue, Aug 19, 2003 at 03:02:48PM -0700, Marcel Moolenaar wrote: > int > gethostname(name, namelen) > char *name; > size_t namelen; > { > int mib[2]; > size_t size; #ifdef __alpha__ > /* > * Preserve behaviour for when namelen was an int. > * This avoids ABI breakages. > */ > namelen = (int)namelen; #endif I don't think we should worry about this for AMD64 -- I'd rather for things to be correct on it.