From owner-svn-src-stable@FreeBSD.ORG Fri Aug 13 07:34:41 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DF101065674; Fri, 13 Aug 2010 07:34:41 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2228FC0A; Fri, 13 Aug 2010 07:34:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7D7Yfbu034839; Fri, 13 Aug 2010 07:34:41 GMT (envelope-from ume@svn.freebsd.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7D7Yf3I034838; Fri, 13 Aug 2010 07:34:41 GMT (envelope-from ume@svn.freebsd.org) Message-Id: <201008130734.o7D7Yf3I034838@svn.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 13 Aug 2010 07:34:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r211277 - stable/6/sbin/ip6fw X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2010 07:34:41 -0000 Author: ume Date: Fri Aug 13 07:34:41 2010 New Revision: 211277 URL: http://svn.freebsd.org/changeset/base/211277 Log: Fix the argument type of fill_icmptypes() on amd64. PR: bin/132911 Submitted by: Yoshitaka AHAREN Modified: stable/6/sbin/ip6fw/ip6fw.c Modified: stable/6/sbin/ip6fw/ip6fw.c ============================================================================== --- stable/6/sbin/ip6fw/ip6fw.c Fri Aug 13 06:39:54 2010 (r211276) +++ stable/6/sbin/ip6fw/ip6fw.c Fri Aug 13 07:34:41 2010 (r211277) @@ -764,7 +764,7 @@ fill_ip6opt(u_char *set, u_char *reset, void fill_icmptypes(types, vp, fw_flg) - u_long *types; + unsigned *types; char **vp; u_short *fw_flg; {