From 824ef91438af118ffa6972f45f19844b1ed2ec43 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 24 Apr 2008 19:30:24 +0200 Subject: added missing copyright statements thanks to Michael Biebl for noticing --- cfsysline.c | 2 ++ ctok.c | 2 ++ linkedlist.c | 2 ++ sysvar.c | 2 ++ 4 files changed, 8 insertions(+) diff --git a/cfsysline.c b/cfsysline.c index 1fd03a46..1aebc354 100644 --- a/cfsysline.c +++ b/cfsysline.c @@ -3,6 +3,8 @@ * * File begun on 2007-07-30 by RGerhards * + * Copyright (C) 2007, 2008 by Rainer Gerhards and Adiscon GmbH. + * * This file is part of rsyslog. * * Rsyslog is free software: you can redistribute it and/or modify diff --git a/ctok.c b/ctok.c index 98d5b63b..de2bd8a8 100644 --- a/ctok.c +++ b/ctok.c @@ -8,6 +8,8 @@ * * Module begun 2008-02-19 by Rainer Gerhards * + * Copyright (C) 2008 by Rainer Gerhards and Adiscon GmbH. + * * This file is part of the rsyslog runtime library. * * The rsyslog runtime library is free software: you can redistribute it and/or modify diff --git a/linkedlist.c b/linkedlist.c index 9adf40c4..383cf488 100644 --- a/linkedlist.c +++ b/linkedlist.c @@ -11,6 +11,8 @@ * * File begun on 2007-07-31 by RGerhards * + * Copyright (C) 2007, 2008 by Rainer Gerhards and Adiscon GmbH. + * * This file is part of rsyslog. * * Rsyslog is free software: you can redistribute it and/or modify diff --git a/sysvar.c b/sysvar.c index 14e32b96..5eec8f67 100644 --- a/sysvar.c +++ b/sysvar.c @@ -5,6 +5,8 @@ * * Module begun 2008-02-25 by Rainer Gerhards * + * Copyright (C) 2008 by Rainer Gerhards and Adiscon GmbH. + * * This file is part of the rsyslog runtime library. * * The rsyslog runtime library is free software: you can redistribute it and/or modify -- cgit v1.2.3 From 273224d7c58345048032498c00d00e4b69d8dc34 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 2 May 2008 10:25:07 +0200 Subject: fixed a bug in imklog which lead to startup problems ... (including segfault) on some platforms under some circumsances. Thanks to Vieri for reporting this bug and helping to troubleshoot it. --- ChangeLog | 5 +++++ configure.ac | 2 +- plugins/imklog/ksym_mod.c | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4e16f472..6b64b0f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ --------------------------------------------------------------------------- +Version 3.16.1 (rgerhards), 2008-05-02 +- fixed a bug in imklog which lead to startup problems (including + segfault) on some platforms under some circumsances. Thanks to + Vieri for reporting this bug and helping to troubleshoot it. +--------------------------------------------------------------------------- Version 3.16.0 (rgerhards), 2008-04-24 - new v3-stable (3.16.x) based on beta 3.15.x (RELP support) - bugfix: omsnmp had a too-small sized buffer for hostname+port. This diff --git a/configure.ac b/configure.ac index a1595bd2..8f107207 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],[3.16.0],[rsyslog@lists.adiscon.com]) +AC_INIT([rsyslog],[3.16.1],[rsyslog@lists.adiscon.com]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([syslogd.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/plugins/imklog/ksym_mod.c b/plugins/imklog/ksym_mod.c index 11535a5f..3e064e20 100644 --- a/plugins/imklog/ksym_mod.c +++ b/plugins/imklog/ksym_mod.c @@ -163,7 +163,6 @@ extern int InitMsyms(void) else Syslog(LOG_ERR, "Error loading kernel symbols " \ "- %s\n", strerror(errno)); - fclose(ksyms); return(0); } -- cgit v1.2.3 From b7c93404312849c35abe8a708fa2c0f2c4aabbbf Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 2 May 2008 10:50:46 +0200 Subject: preparing for 3.16.1 release --- doc/manual.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual.html b/doc/manual.html index 01d97065..3792fad8 100644 --- a/doc/manual.html +++ b/doc/manual.html @@ -16,7 +16,7 @@ relay chains while at the same time being very easy to setup for the novice user. And as we know what enterprise users really need, there is also professional rsyslog support available directly from the source!

-

This documentation is for version 3.16.0 (v3-stable branch) of rsyslog. +

This documentation is for version 3.16.1 (v3-stable branch) of rsyslog. Visit the rsyslog status page to obtain current version information and project status.

If you like rsyslog, you might -- cgit v1.2.3