summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-14 13:30:15 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-14 13:30:15 +0000
commit3b176b63e167c0d3ca0aefdd549b667bd863a1f0 (patch)
tree9c3a06d5dab0537849f63d24e68b0d80e425a2fb
parent7eb0a763c32c9887dd0b1523ac154757f641e27e (diff)
downloadrsyslog-3b176b63e167c0d3ca0aefdd549b667bd863a1f0.tar.gz
rsyslog-3b176b63e167c0d3ca0aefdd549b667bd863a1f0.tar.xz
rsyslog-3b176b63e167c0d3ca0aefdd549b667bd863a1f0.zip
fixed a bug with standard template definitions (not a big deal) - thanks to
varmojfekoj for spotting it
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
-rw-r--r--syslogd.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b4603389..c8c0558f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
---------------------------------------------------------------------------
+Version 2.0.1 STABLE (rgerhards), 2008-01-??
+- fixed a bug in integer conversion - but this function was never called,
+ so it is not really a useful bug fix ;)
+- fixed a bug with standard template definitions (not a big deal) - thanks
+ to varmojfekoj for spotting it
+---------------------------------------------------------------------------
Version 2.0.0 STABLE (rgerhards), 2008-01-02
- re-release of 1.21.2 as STABLE with no modifications except some
doc updates
diff --git a/configure.ac b/configure.ac
index 4659f495..c2fd803b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT([rsyslog],[2.0.0],[rsyslog@lists.adiscon.com.])
+AC_INIT([rsyslog],[2.0.1],[rsyslog@lists.adiscon.com.])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([syslogd.c])
AC_CONFIG_HEADERS([config.h])
diff --git a/syslogd.c b/syslogd.c
index c562b4ed..818f5f35 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -6222,7 +6222,7 @@ static void mainThread()
pTmp = template_StdUsrMsgFmt;
tplAddLine(" StdUsrMsgFmt", &pTmp);
pTmp = template_StdDBFmt;
- tplLastStaticInit(tplAddLine(" StdDBFmt", &pTmp));
+ tplAddLine(" StdDBFmt", &pTmp);
pTmp = template_StdPgSQLFmt;
tplLastStaticInit(tplAddLine(" StdPgSQLFmt", &pTmp));