From: Jozsef Kadlecsik Date: Wed, 22 Dec 2010 20:57:01 +0000 (+0100) Subject: Kernel version check at minimal supported version is mistyped, now fixed. X-Git-Tag: v5.2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c4f5407eb7470a0a1522212667bb28119e52118;p=thirdparty%2Fipset.git Kernel version check at minimal supported version is mistyped, now fixed. --- diff --git a/kernel/xt_set.c b/kernel/xt_set.c index e95cae0d..61b91895 100644 --- a/kernel/xt_set.c +++ b/kernel/xt_set.c @@ -50,8 +50,8 @@ match_set(ip_set_id_t index, const struct sk_buff *skb, * 2.6.34: rcu: Add lockdep-enabled variants of rcu_dereference() */ -#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35) -#error "Linux kernel version too old: must be >= 2.6.35" +#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 34) +#error "Linux kernel version too old: must be >= 2.6.34" #endif #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35)