From owner-svn-src-head@FreeBSD.ORG Thu Feb 18 22:26:02 2010 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 0C672106568F; Thu, 18 Feb 2010 22:26:02 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EF8028FC13; Thu, 18 Feb 2010 22:26:01 +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 o1IMQ1Li096351; Thu, 18 Feb 2010 22:26:01 GMT (envelope-from pjd@svn.freebsd.org) Received: (from pjd@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1IMQ1Os096347; Thu, 18 Feb 2010 22:26:01 GMT (envelope-from pjd@svn.freebsd.org) Message-Id: <201002182226.o1IMQ1Os096347@svn.freebsd.org> From: Pawel Jakub Dawidek Date: Thu, 18 Feb 2010 22:26:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204068 - in head/sys: compat/linux netinet 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, 18 Feb 2010 22:26:02 -0000 Author: pjd Date: Thu Feb 18 22:26:01 2010 New Revision: 204068 URL: http://svn.freebsd.org/changeset/base/204068 Log: No need to include security/mac/mac_framework.h here. Modified: head/sys/compat/linux/linux_stats.c head/sys/netinet/ip_mroute.c head/sys/netinet/ip_options.c Modified: head/sys/compat/linux/linux_stats.c ============================================================================== --- head/sys/compat/linux/linux_stats.c Thu Feb 18 22:23:30 2010 (r204067) +++ head/sys/compat/linux/linux_stats.c Thu Feb 18 22:26:01 2010 (r204068) @@ -58,8 +58,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include - static void translate_vnhook_major_minor(struct vnode *vp, struct stat *sb) { Modified: head/sys/netinet/ip_mroute.c ============================================================================== --- head/sys/netinet/ip_mroute.c Thu Feb 18 22:23:30 2010 (r204067) +++ head/sys/netinet/ip_mroute.c Thu Feb 18 22:26:01 2010 (r204068) @@ -114,8 +114,6 @@ __FBSDID("$FreeBSD$"); #include -#include - #ifndef KTR_IPMF #define KTR_IPMF KTR_INET #endif Modified: head/sys/netinet/ip_options.c ============================================================================== --- head/sys/netinet/ip_options.c Thu Feb 18 22:23:30 2010 (r204067) +++ head/sys/netinet/ip_options.c Thu Feb 18 22:26:01 2010 (r204068) @@ -65,8 +65,6 @@ __FBSDID("$FreeBSD$"); #include -#include - static int ip_dosourceroute = 0; SYSCTL_INT(_net_inet_ip, IPCTL_SOURCEROUTE, sourceroute, CTLFLAG_RW, &ip_dosourceroute, 0, "Enable forwarding source routed IP packets");