]> granicus.if.org Git - ipset/commitdiff
Kernel version check at minimal supported version is mistyped, now fixed.
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Wed, 22 Dec 2010 20:57:01 +0000 (21:57 +0100)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Wed, 22 Dec 2010 20:57:01 +0000 (21:57 +0100)
kernel/xt_set.c

index e95cae0d65801863a3887d0ef42654acacf76b42..61b91895ebe6f7f0bd3b95639e9fa0811af38574 100644 (file)
@@ -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)