From owner-svn-src-head@FreeBSD.ORG Thu Feb 19 14:43:13 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A983106566C; Thu, 19 Feb 2009 14:43:13 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id B16F98FC15; Thu, 19 Feb 2009 14:43:12 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id E961E46B51; Thu, 19 Feb 2009 09:43:11 -0500 (EST) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n1JEh3lo051774; Thu, 19 Feb 2009 09:43:03 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Giovanni Trematerra Date: Thu, 19 Feb 2009 08:51:36 -0500 User-Agent: KMail/1.9.7 References: <200902182227.n1IMRkZ5076793@svn.freebsd.org> <4e6cba830902190058ndd6cc9dga02bb8ddd52a7827@mail.gmail.com> In-Reply-To: <4e6cba830902190058ndd6cc9dga02bb8ddd52a7827@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200902190851.37430.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 19 Feb 2009 09:43:03 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.2/9009/Thu Feb 19 01:22:56 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r188766 - head/usr.sbin/rpc.yppasswdd X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Feb 2009 14:43:14 -0000 On Thursday 19 February 2009 3:58:36 am Giovanni Trematerra wrote: > On Wed, Feb 18, 2009 at 11:27 PM, Warner Losh wrote: > > > > > time_t is a 64-bits int on arm and mips. Before this change, arm was > > silently broken. I guess there aren't that many ARM machines running > > master YP domain servers. :) > > > > If I'm not wrong, time_t is a 64-bits int on amd64 too. > Was amd64 silently broken so far? On amd64, a long is 64-bits, so sizeof(long) == sizeof(time_t). -- John Baldwin