From owner-svn-src-stable-7@FreeBSD.ORG Thu Oct 25 01:23:42 2012 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2EF7B89; Thu, 25 Oct 2012 01:23:42 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9B8828FC0A; Thu, 25 Oct 2012 01:23:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9P1NgZS040055; Thu, 25 Oct 2012 01:23:42 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9P1NgbU040053; Thu, 25 Oct 2012 01:23:42 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210250123.q9P1NgbU040053@svn.freebsd.org> From: Eitan Adler Date: Thu, 25 Oct 2012 01:23:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r242026 - stable/7/usr.bin/netstat X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2012 01:23:42 -0000 Author: eadler Date: Thu Oct 25 01:23:42 2012 New Revision: 242026 URL: http://svn.freebsd.org/changeset/base/242026 Log: MFC r241838: Remove unused variable. Newer versions of gcc care. Approved by: cperciva (implicit) Modified: stable/7/usr.bin/netstat/route.c Directory Properties: stable/7/usr.bin/netstat/ (props changed) Modified: stable/7/usr.bin/netstat/route.c ============================================================================== --- stable/7/usr.bin/netstat/route.c Thu Oct 25 01:23:41 2012 (r242025) +++ stable/7/usr.bin/netstat/route.c Thu Oct 25 01:23:42 2012 (r242026) @@ -1111,10 +1111,8 @@ ipx_phost(struct sockaddr *sa) struct sockaddr_ipx work; static union ipx_net ipx_zeronet; char *p; - struct ipx_addr in; work = *sipx; - in = work.sipx_addr; work.sipx_addr.x_port = 0; work.sipx_addr.x_net = ipx_zeronet;