From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761479AbXGOMPM (ORCPT ); Sun, 15 Jul 2007 08:15:12 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759161AbXGOMO5 (ORCPT ); Sun, 15 Jul 2007 08:14:57 -0400 Received: from mailout.stusta.mhn.de ([141.84.69.5]:33816 "EHLO mailhub.stusta.mhn.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1758943AbXGOMO4 (ORCPT ); Sun, 15 Jul 2007 08:14:56 -0400 Date: Sun, 15 Jul 2007 14:14:19 +0200 From: Adrian Bunk To: davem@davemloft.net Cc: netdev@vger.kernel.org, kaber@coreworks.de, netfilter-devel@lists.netfilter.org, linux-kernel@vger.kernel.org, cilly Subject: [2.6 patch] ipt_iprange.h must #include Message-ID: <20070715121419.GK3565@stusta.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-11) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org ipt_iprange.h must #include since it uses __be32. This patch fixes kernel Bugzilla #7604. Signed-off-by: Adrian Bunk --- --- linux-2.6.22-rc6-mm1/include/linux/netfilter_ipv4/ipt_iprange.h.old 2007-07-15 13:07:40.000000000 +0200 +++ linux-2.6.22-rc6-mm1/include/linux/netfilter_ipv4/ipt_iprange.h 2007-07-15 13:07:55.000000000 +0200 @@ -1,6 +1,8 @@ #ifndef _IPT_IPRANGE_H #define _IPT_IPRANGE_H +#include + #define IPRANGE_SRC 0x01 /* Match source IP address */ #define IPRANGE_DST 0x02 /* Match destination IP address */ #define IPRANGE_SRC_INV 0x10 /* Negate the condition */