From 0e83bd69fcce2359d1d25022d1cc1263e42219a9 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 15 Apr 2008 15:19:53 +0200 Subject: final work for release of v3.17.1 --- ChangeLog | 4 +++- configure.ac | 2 +- doc/Makefile.am | 2 +- doc/imgssapi.html | 6 ++++-- doc/manual.html | 5 +++-- doc/status.html | 14 +++++++------- plugins/imklog/imklog.c | 2 +- 7 files changed, 20 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index 785aab69..29c12e9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,11 +14,13 @@ Version 3.17.1 (rgerhards), 2008-04-15 change looks quite unintrusive and so we added it to the parser. - implemented klogd functionality for BSD - implemented high precision timestamps for the kernel log. Thanks to - Michale Biebl for pointing out that the kernel log did not have them. + Michael Biebl for pointing out that the kernel log did not have them. - provided ability to discard non-kernel messages if they are present in the kernel log (seems to happen on BSD) - implemented $KLogInternalMsgFacility config directive - implemented $KLogPermitNonKernelFacility config directive +Plus a number of bugfixes that were applied to v3-stable and beta +branches (not mentioned here in detail). --------------------------------------------------------------------------- Version 3.17.0 (rgerhards), 2008-04-08 - added native ability to send mail messages diff --git a/configure.ac b/configure.ac index e3cfd9fc..2a5ef16b 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.17.1-bsd],[rsyslog@lists.adiscon.com]) +AC_INIT([rsyslog],[3.17.1],[rsyslog@lists.adiscon.com]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([syslogd.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/doc/Makefile.am b/doc/Makefile.am index 0179c21f..6eb82b81 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -33,7 +33,7 @@ html_files = \ imgssapi.html \ imrelp.html \ imuxsock.html \ - imgklog.html \ + imklog.html \ professional_support.html \ queues.html \ queueWorkerLogic.dia \ diff --git a/doc/imgssapi.html b/doc/imgssapi.html index af15e59e..cf16eb01 100644 --- a/doc/imgssapi.html +++ b/doc/imgssapi.html @@ -10,7 +10,9 @@

Description:

Provides the ability to receive syslog messages from the network protected via Kerberos 5 encryption and authentication. This -module also accept plain tcp syslog messages on the same port if configured to do so. If you need just plain tcp, use  imtcp instead.

+module also accept plain tcp syslog messages on the same port if configured to do so. If you need just plain tcp, use imtcp instead.

+

There is also an overview of gssapi support in rsyslog available. We recommend reading +it before digging into the configuration parameters.

Configuration Directives:

diff --git a/doc/status.html b/doc/status.html index 98bb4f90..63a3f588 100644 --- a/doc/status.html +++ b/doc/status.html @@ -2,16 +2,16 @@ rsyslog status page

rsyslog status page

-

This page reflects the status as of 2008-04-09.

+

This page reflects the status as of 2008-04-15.

Current Releases

-

development: 3.17.0 - -change log - -download +

development: 3.17.1 - +change log - +download -
beta: 3.15.0 - -change log - -download

+
beta: 3.15.1 - +change log - +download

v3 stable: 3.14.2 - change log - download diff --git a/plugins/imklog/imklog.c b/plugins/imklog/imklog.c index e6bd2326..c6fb1592 100644 --- a/plugins/imklog/imklog.c +++ b/plugins/imklog/imklog.c @@ -95,7 +95,7 @@ enqMsg(uchar *msg, uchar* pszTag, int iFacility, int iSeverity) MsgSetUxTradMsg(pMsg, (char*)msg); MsgSetRawMsg(pMsg, (char*)msg); MsgSetMSG(pMsg, (char*)msg); - MsgSetHOSTNAME(pMsg, LocalHostName); + MsgSetHOSTNAME(pMsg, (char*)LocalHostName); MsgSetTAG(pMsg, (char*)pszTag); pMsg->iFacility = LOG_FAC(iFacility); pMsg->iSeverity = LOG_PRI(iSeverity); -- cgit