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);