diff --git a/ChangeLog b/ChangeLog index 722b7ef3b3..e8622be91e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2017-10-21 Alexandre Cassen + * keepalived-1.3.9 released. + * Stop segfault if SSL context cannot be initialised. + * Don't leave point to SSL data after freeing it. + * Fix memory leak if duplicate SSL context values specified. + * Don't initialise an SSL context if it isn't being used. + * Checksum compatibility should refer to v1.3.6. + * Update keepalived.spec.in for differences between Fedora and CentOS. + * change hash to something more even and hash size accordingly. + * also update size of hash in free_list. + 2017-10-15 Alexandre Cassen * keepalived-1.3.8 released. * parser: do not exit when glob() doesn't match any files. diff --git a/configure b/configure index 893f9b0169..6c157a771b 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Keepalived 1.3.8. +# Generated by GNU Autoconf 2.69 for Keepalived 1.3.9. # # Report bugs to . # @@ -580,8 +580,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Keepalived' PACKAGE_TARNAME='keepalived' -PACKAGE_VERSION='1.3.8' -PACKAGE_STRING='Keepalived 1.3.8' +PACKAGE_VERSION='1.3.9' +PACKAGE_STRING='Keepalived 1.3.9' PACKAGE_BUGREPORT='keepalived-devel@lists.sourceforge.net' PACKAGE_URL='http://www.keepalived.org/' @@ -1392,7 +1392,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Keepalived 1.3.8 to adapt to many kinds of systems. +\`configure' configures Keepalived 1.3.9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1458,7 +1458,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Keepalived 1.3.8:";; + short | recursive ) echo "Configuration of Keepalived 1.3.9:";; esac cat <<\_ACEOF @@ -1616,7 +1616,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Keepalived configure 1.3.8 +Keepalived configure 1.3.9 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2272,7 +2272,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Keepalived $as_me 1.3.8, which was +It was created by Keepalived $as_me 1.3.9, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3135,7 +3135,7 @@ fi # Define the identity of the package. PACKAGE='keepalived' - VERSION='1.3.8' + VERSION='1.3.9' cat >>confdefs.h <<_ACEOF @@ -11018,7 +11018,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Keepalived $as_me 1.3.8, which was +This file was extended by Keepalived $as_me 1.3.9, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -11085,7 +11085,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Keepalived config.status 1.3.8 +Keepalived config.status 1.3.9 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 1257d8b36a..6ecb4bafd2 100644 --- a/configure.ac +++ b/configure.ac @@ -88,7 +88,7 @@ m4_ifndef([AS_VAR_COPY], dnl ----[ Process this file with autoconf to produce a configure script ]---- AC_PREREQ([2.63]) -AC_INIT([Keepalived], [1.3.8], [keepalived-devel@lists.sourceforge.net], [], [http://www.keepalived.org/]) +AC_INIT([Keepalived], [1.3.9], [keepalived-devel@lists.sourceforge.net], [], [http://www.keepalived.org/]) AM_INIT_AUTOMAKE([-Wall -Werror -Woverride foreign]) AC_CONFIG_SRCDIR([keepalived/core/main.c])