]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
compat_xtables: fix 2.6.34 compile error due to a typo
authorJan Engelhardt <jengelh@medozas.de>
Fri, 30 Apr 2010 20:39:48 +0000 (22:39 +0200)
committerJan Engelhardt <jengelh@medozas.de>
Fri, 30 Apr 2010 20:50:52 +0000 (22:50 +0200)
doc/changelog.txt
extensions/compat_xtables.c

index 2945295a6c3fb2e6b5411b6b1f76a444df4fa074..2a34b537d9dc5860df65ce946c3f36cdf0318024 100644 (file)
@@ -1,6 +1,7 @@
 
 HEAD
 ====
+- compat_xtables: fix 2.6.34 compile error due to a typo
 
 
 Xtables-addons 1.25 (April 26 2010)
index 508bbc08424bf8ff0d989f8200440016a5f100cb..02e25099c872bdf92e97838d950233c81e310223 100644 (file)
@@ -270,7 +270,7 @@ static bool xtnu_target_check(const char *table, const void *entry,
 #endif
 
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28) && \
-    LINUX_VERSION_CODE <  KERNEL_VERSION(2, 6, 34)
+    LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
 static bool xtnu_target_check(const struct xt_tgchk_param *par)
 {
        struct xtnu_target *nt = xtcompat_nutarget(par->target);