From: Frédéric Marchal Date: Sat, 18 Sep 2010 04:44:00 +0000 (+0000) Subject: Change version number to 2.3.1. X-Git-Tag: v2.3.1~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf992832205027cdde8e00f9eef6;p=thirdparty%2Fsarg.git Change version number to 2.3.1. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c6f77f..ff2be73 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,9 @@ CMAKE_MINIMUM_REQUIRED (VERSION 2.6) PROJECT(sarg C) SET(sarg_VERSION 2) -SET(sarg_REVISION "3.1-pre1") +SET(sarg_REVISION "3.1") SET(sarg_BUILD "") -SET(sarg_BUILDDATE "Sep-15-2010") +SET(sarg_BUILDDATE "Sep-18-2010") INCLUDE(AddFileDependencies) INCLUDE(CheckIncludeFile) diff --git a/ChangeLog b/ChangeLog index c0a39d3..e4ab1bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ SARG ChangeLog -Sep-02-2010 Version 2.3.1 +Sep-18-2010 Version 2.3.1 - Remove the distinct printf for the alpha architecture as it doesn't work anymore and is not necessary anyway. - Don't abort if "onload" or "script" is found in the user agent string. - Take the configured locale path into account when installing sarg. @@ -14,6 +14,7 @@ Sep-02-2010 Version 2.3.1 - Use a more robust protection against an attack using javascript in the useragent string. - Prevent a segfault if the parameter passed to command line option -d is invalid (thanks to ItalianPenguin). - Check for the return code of the tail command to generate the realtime report. + - Escape the invalid characters in the LDAP search string instead of truncating it at the first invalid character (thanks to mouchar for reporting the problem and testing the fix). Jun-21-2010 Version 2.3 - LDAP usertab added. diff --git a/configure.in b/configure.in index d071327..909a6e5 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([sarg],[2.3.1-pre1]) +AC_INIT([sarg],[2.3.1]) AC_CONFIG_SRCDIR([log.c]) AC_CONFIG_AUX_DIR(cfgaux) diff --git a/include/info.h b/include/info.h index a59b32d..b76d16d 100755 --- a/include/info.h +++ b/include/info.h @@ -1,3 +1,3 @@ -#define VERSION PACKAGE_VERSION" Sep-15-2010" +#define VERSION PACKAGE_VERSION" Sep-18-2010" #define PGM PACKAGE_NAME #define URL "http://sarg.sourceforge.net"