summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-12-05 02:14:20 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2008-12-05 02:14:20 +0100
commit85c85c1496856307a0080150176842e9a480a5a3 (patch)
tree711cfbb725852564a10d52ae4d42071ce99002ab
parent3e1220f434533b5e91de51f5de17cc76eaa8af45 (diff)
downloadrsyslog-85c85c1496856307a0080150176842e9a480a5a3.tar.gz
rsyslog-85c85c1496856307a0080150176842e9a480a5a3.tar.xz
rsyslog-85c85c1496856307a0080150176842e9a480a5a3.zip
doc bugfix: typo in v3 compatibility document
thanks to Andrej for reporting
-rw-r--r--ChangeLog2
-rw-r--r--doc/v3compatibility.html6
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 43dcbff8..d60e6f76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+- doc bugfix: typo in v3 compatibility document
+ thanks to Andrej for reporting
---------------------------------------------------------------------------
Version 4.1.2 [DEVEL] (rgerhards), 2008-12-04
- bugfix: code did not compile without zlib
diff --git a/doc/v3compatibility.html b/doc/v3compatibility.html
index 51619947..ad8776bb 100644
--- a/doc/v3compatibility.html
+++ b/doc/v3compatibility.html
@@ -95,7 +95,7 @@ set the local address the server should listen to via <b>$UDPServerAddress
<p>The following example configures an UDP syslog server at the
local address 192.0.2.1 on port 514:</p>
<p><b>$ModLoad imudp<br>
-$UDPSeverAddress 192.0.2.1 # this MUST be before the $UDPServerRun
+$UDPServerAddress 192.0.2.1 # this MUST be before the $UDPServerRun
directive!<br>
$UDPServerRun 514</b></p>
<p>"$UDPServerAddress *" means listen on all local interfaces.
@@ -103,10 +103,10 @@ This is the default if no directive is specified.</p>
<p>Please note that now multiple listeners are supported. For
example, you can do the following:</p>
<p><b>$ModLoad imudp<br>
-$UDPSeverAddress 192.0.2.1 # this MUST be before the $UDPServerRun
+$UDPServerAddress 192.0.2.1 # this MUST be before the $UDPServerRun
directive!<br>
$UDPServerRun 514<br>
-$UDPSeverAddress * # all local interfaces<br>
+$UDPServerAddress * # all local interfaces<br>
$UDPServerRun 1514</b></p>
<p>These config file settings run two listeners: one
at 192.0.2.1:514 and one on port 1514, which listens on all local