From 8b2a266db0652f5c71129c60a3e6175388d3804d Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 30 Apr 2010 22:39:48 +0200 Subject: [PATCH] compat_xtables: fix 2.6.34 compile error due to a typo --- doc/changelog.txt | 1 + extensions/compat_xtables.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/changelog.txt b/doc/changelog.txt index 2945295..2a34b53 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -1,6 +1,7 @@ HEAD ==== +- compat_xtables: fix 2.6.34 compile error due to a typo Xtables-addons 1.25 (April 26 2010) diff --git a/extensions/compat_xtables.c b/extensions/compat_xtables.c index 508bbc0..02e2509 100644 --- a/extensions/compat_xtables.c +++ b/extensions/compat_xtables.c @@ -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);