diff options
author | bjarniig@rhi.hi.is <bjarniig@rhi.hi.is> | 2012-11-14 10:54:05 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-14 10:54:05 +0100 |
commit | 9f3657ac8e8d9a69a435b94e31a9a0e05c0e0999 (patch) | |
tree | 716aa91c2bcf6e91139ba733f87b851307c5533c | |
parent | ec60ec8496b4e445f07fa4a9e21eb0c8f4506c7f (diff) | |
download | rsyslog-9f3657ac8e8d9a69a435b94e31a9a0e05c0e0999.tar.gz rsyslog-9f3657ac8e8d9a69a435b94e31a9a0e05c0e0999.tar.bz2 rsyslog-9f3657ac8e8d9a69a435b94e31a9a0e05c0e0999.zip |
bugfix: invalid formatting of man page
-rw-r--r-- | tools/rsyslog.conf.5 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/rsyslog.conf.5 b/tools/rsyslog.conf.5 index 641ba9ba..fe9e083b 100644 --- a/tools/rsyslog.conf.5 +++ b/tools/rsyslog.conf.5 @@ -415,7 +415,7 @@ To escape: .sp 0 \\ = \\\\ --> '\\' is used to escape (as in C) .sp 0 -$template TraditionalFormat,"%timegenerated% %HOSTNAME% %syslogtag%%msg%\n" +$template TraditionalFormat,"%timegenerated% %HOSTNAME% %syslogtag%%msg%\\n" Properties can be accessed by the property replacer (see there for details). @@ -487,7 +487,7 @@ A template that resembles traditional syslogd file output: .RS $template TraditionalFormat,"%timegenerated% %HOSTNAME% .sp 0 -%syslogtag%%msg:::drop-last-lf%\n" +%syslogtag%%msg:::drop-last-lf%\\n" .RE A template that tells you a little more about the message: @@ -495,7 +495,7 @@ A template that tells you a little more about the message: .RS $template precise,"%syslogpriority%,%syslogfacility%,%timegenerated%,%HOSTNAME%, .sp 0 -%syslogtag%,%msg%\n" +%syslogtag%,%msg%\\n" .RE A template for RFC 3164 format: @@ -507,7 +507,7 @@ $template RFC3164fmt,"<%PRI%>%TIMESTAMP% %HOSTNAME% %syslogtag%%msg%" A template for the format traditionally used for user messages: .sp .RS -$template usermsg," XXXX%syslogtag%%msg%\n\r" +$template usermsg," XXXX%syslogtag%%msg%\\n\\r" .RE And a template with the traditional wall-message format: |