From owner-svn-src-stable-8@FreeBSD.ORG Tue Oct 26 03:57:23 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CE8C106566C; Tue, 26 Oct 2010 03:57:23 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id E5B468FC08; Tue, 26 Oct 2010 03:57:22 +0000 (UTC) Received: by gya6 with SMTP id 6so2675698gya.13 for ; Mon, 25 Oct 2010 20:57:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=Wsm+ZHD9TezslOUa6qFRvAqcPF5nqox7RIaly79neiE=; b=A5SHEWWy3jT5Qfo2EkbMzf32Vwm+AKAdr/RyxJbOuBpt/x2DALWti9hYiONB1OXc+h 4Z95+IzStvlFoQquO3DLwIkxX+JZMGPsQI7eKWTA9BCj8lmzrY18KybN9jdy5i0AVkNh wu5A+aQ5sSP4XCKsYoOfCu1zbO1ZmlsLoSSpg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=lpilT0y5AbEMa8O99T9u54ImwOGF3Nvspev7DF0djHWGiozPqJYJCsp1cxsTC1ENdC wn1ExsluSiDlHyH341BxxfexclXW0kedC4KF7R98I98EE9TaBqdadCX3mFEieQuMuFQt mg1GTGq4hW9AqpafePxsrs6WI6VT7y1GKYWCU= Received: by 10.151.27.1 with SMTP id e1mr14653422ybj.250.1288065440494; Mon, 25 Oct 2010 20:57:20 -0700 (PDT) Received: from centel.dataix.local ([99.181.136.243]) by mx.google.com with ESMTPS id n48sm3272572yha.7.2010.10.25.20.57.18 (version=SSLv3 cipher=RC4-MD5); Mon, 25 Oct 2010 20:57:19 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4CC6519D.8070505@DataIX.net> Date: Mon, 25 Oct 2010 23:57:17 -0400 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.11) Gecko/20101021 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Attilio Rao References: <201010251501.o9PF1euH068762@svn.freebsd.org> <4CC648E3.6000307@DataIX.net> In-Reply-To: <4CC648E3.6000307@DataIX.net> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org Subject: Re: svn commit: r214343 - stable/8/bin/ps X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 03:57:23 -0000 On 10/25/2010 23:20, jhell wrote: > On 10/25/2010 11:01, Attilio Rao wrote: >> Author: attilio >> Date: Mon Oct 25 15:01:40 2010 >> New Revision: 214343 >> URL: http://svn.freebsd.org/changeset/base/214343 >> >> Log: >> MFC r213012 by emaste: >> Correct sort order. >> >> Sponsored by: Sandvine Incorporated >> >> Modified: >> stable/8/bin/ps/extern.h >> Directory Properties: >> stable/8/bin/ps/ (props changed) >> >> Modified: stable/8/bin/ps/extern.h >> ============================================================================== >> --- stable/8/bin/ps/extern.h Mon Oct 25 14:05:25 2010 (r214342) >> +++ stable/8/bin/ps/extern.h Mon Oct 25 15:01:40 2010 (r214343) >> @@ -79,8 +79,8 @@ int s_uname(KINFO *); >> void showkey(void); >> void started(KINFO *, VARENT *); >> void state(KINFO *, VARENT *); >> -void tdnam(KINFO *, VARENT *); >> void tdev(KINFO *, VARENT *); >> +void tdnam(KINFO *, VARENT *); >> void tname(KINFO *, VARENT *); >> void ucomm(KINFO *, VARENT *); >> void uname(KINFO *, VARENT *); >> _______________________________________________ > > cc -O2 -pipe -DLAZY_PS -std=gnu99 -fstack-protector -Wsystem-headers > -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type > -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align > -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs > -Wredundant-decls -Wno-pointer-sign -c /usr/src/bin/ps/keyword.c > /usr/src/bin/ps/keyword.c:190: error: 'struct kinfo_proc' has no member > named 'ki_tdaddr' > *** Error code 1 > > ??? > Ugh! please ignore this. As Ive been here once already now surprised myself by making the same mistake twice! Once, twice, three time a lady! hopefully it won't come to that. -- jhell,v