diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-13 06:23:03 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-13 06:23:03 +0000 |
commit | 1edd0c29aae07ca22f59a460bfa7b804e7570f91 (patch) | |
tree | f8b8bb73da84da8c6eebeaf7cfc1a38119a293eb | |
parent | 5b58b4f72e07239c823a8291c4fa91adcea8a9ad (diff) | |
download | rsyslog-1edd0c29aae07ca22f59a460bfa7b804e7570f91.tar.gz rsyslog-1edd0c29aae07ca22f59a460bfa7b804e7570f91.tar.bz2 rsyslog-1edd0c29aae07ca22f59a460bfa7b804e7570f91.zip |
minor doc updates
-rw-r--r-- | AUTHORS | 5 | ||||
-rw-r--r-- | doc/status.html | 6 | ||||
-rw-r--r-- | rsyslog.conf.5 | 2 | ||||
-rw-r--r-- | rsyslogd.8 | 2 | ||||
-rw-r--r-- | syslogd.c | 2 |
5 files changed, 11 insertions, 6 deletions
@@ -1,2 +1,7 @@ Rainer Gerhards <rgerhards@adiscon.com>, Adiscon GmbH Michael Meckelein <mmeckelein@hq.adiscon.com>, Adiscon GmbH + +Contributors +Andres Riancho + - supplied regexp functionality for the property replacer - a great feature. + thanks! diff --git a/doc/status.html b/doc/status.html index a1346ca8..d7cef02e 100644 --- a/doc/status.html +++ b/doc/status.html @@ -4,10 +4,10 @@ </head>
<body>
<h2>rsyslog status page</h2>
-<p>This page reflects the status as of 2005-09-05.</p>
+<p>This page reflects the status as of 2005-09-12.</p>
<h2>Current Release</h2>
-<p>0.9.8 - <a href="http://www.rsyslog.com/Article28.phtml">change log</a> -
-<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-14.phtml">download</a>
+<p>1.0.0 - <a href="http://www.rsyslog.com/Article30.phtml">change log</a> -
+<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-15.phtml">download</a>
(<a href="version_naming.html">How are versions named?</a>)</p>
<h2>Platforms</h2>
<ul>
diff --git a/rsyslog.conf.5 b/rsyslog.conf.5 index 0de1c7fc..6046f3d9 100644 --- a/rsyslog.conf.5 +++ b/rsyslog.conf.5 @@ -17,7 +17,7 @@ .\" along with this program; if not, write to the Free Software .\" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. .\" -.TH RSYSLOG.CONF 5 "2005-08-08" "Version 0.9.6" "Linux System Administration" +.TH RSYSLOG.CONF 5 "12 September 2005" "Version 1.10.0 (unstable)" "Linux System Administration" .SH NAME rsyslog.conf \- rsyslogd(8) configuration file .SH DESCRIPTION @@ -1,7 +1,7 @@ .\" Copyright 2004-2005 Rainer Gerhards and Adiscon for the rsyslog modifications .\" May be distributed under the GNU General Public License .\" -.TH RSYSLOGD 8 "08 August 2005" "Version 0.9.6" "Linux System Administration" +.TH RSYSLOGD 8 "12 September 2005" "Version 1.10.0 (unstable)" "Linux System Administration" .SH NAME rsyslogd \- reliable and extended syslogd .SH SYNOPSIS @@ -4748,7 +4748,7 @@ void cflineParseTemplateName(struct filed *f, char** pp, while(*p && isspace(*p)) ++p; - i = 1; /* we start at 1 so that we resever space for the '\0'! */ + i = 1; /* we start at 1 so that we reserve space for the '\0'! */ while(*p && i < iLenTemplate) { *pTemplateName++ = *p++; ++i; |