summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2011-01-18 20:47:44 +0100
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2011-01-18 20:47:44 +0100
commit7cd45445d55b14b7aca69a81b7815a98afc51784 (patch)
treec0413467455011bb03feae966198b25ef4983cb5
parent5039472d2669707031df7d04e132b434e4d0c8f8 (diff)
ipset 5.3 releasedv5.3
-rw-r--r--ChangeLog12
-rw-r--r--configure.ac2
-rw-r--r--kernel/ChangeLog9
3 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 49872b7..c6b1297 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+5.3
+ - Set the non-debug compiling the default
+ - Testsuite fix of ospf replaced with vrrp.
+ - Fix build with NDEBUG defined (Holger Eitzenberger)
+ - Do session initialization once (Holger Eitzenberger)
+ - Make IPv4 and IPv6 address handling similar (Holger Eitzenberger)
+ - Show correct line numbers in restore output for parser errors
+ (Holger Eitzenberger)
+ - Replace ospf with vrrp in the testsuite
+ - Remove autogenerated files (Jan Engelhardt)
+ - Use only AC_CANONICAL_HOST (Jan Engelhardt)
+
5.2
- Handle internal printing errors
- Use cast to void * instead of memcpy as Sparc workaround at sockaddr_XXX
diff --git a/configure.ac b/configure.ac
index 93d5331..d1f001d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Boilerplate
-AC_INIT([ipset], [5.2], [kadlec@blackhole.kfki.hu])
+AC_INIT([ipset], [5.3], [kadlec@blackhole.kfki.hu])
AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER([config.h])
diff --git a/kernel/ChangeLog b/kernel/ChangeLog
index 4acaa89..a8be34d 100644
--- a/kernel/ChangeLog
+++ b/kernel/ChangeLog
@@ -1,3 +1,12 @@
+5.3
+ - There is no need to call synchronize_net() at swapping
+ - Replace strncpy with strlcpy at creating a set
+ - Update copyright date and some style changes
+ - Use jhash.h accepted in kernel, with backward compatibility
+ - Separate prefixlens from ip_set core
+ - Remove unused ctnl parameter from call_ad (Jan Engelhardt)
+ - Comment the possible return values of the add/del/test type-functions
+
5.2
- Kernel version check at minimal supported version was mistyped, now fixed.