svn commit: r211277 - stable/6/sbin/ip6fw

Hajimu UMEMOTO ume at FreeBSD.org
Fri Aug 13 07:34:41 UTC 2010


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 <yaharen__at__gm.dns-lab.jp>

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;
 {


More information about the svn-src-stable mailing list