diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-10-30 16:51:22 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-10-30 16:51:22 +0100 |
commit | caad1340d64a345fa9d1bfc3f902e898d6ee2f76 (patch) | |
tree | 6551a4ba5648443e6306a96b836aa599c17d4886 /tools | |
parent | 154147307442d572de930f09363b144c06802ca1 (diff) | |
download | rsyslog-caad1340d64a345fa9d1bfc3f902e898d6ee2f76.tar.gz rsyslog-caad1340d64a345fa9d1bfc3f902e898d6ee2f76.tar.xz rsyslog-caad1340d64a345fa9d1bfc3f902e898d6ee2f76.zip |
bugfix: correct default for escape ('#') character restored
This was accidently changed to '\\', thanks to David Lang for reporting
the bug.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index 62d33677..270bf843 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -242,7 +242,7 @@ static int bLogStatusMsgs = DFLT_bLogStatusMsgs; /* log rsyslog start/stop/HUP m static int bDebugPrintTemplateList = 1;/* output template list in debug mode? */ static int bDebugPrintCfSysLineHandlerList = 1;/* output cfsyslinehandler list in debug mode? */ static int bDebugPrintModuleList = 1;/* output module list in debug mode? */ -uchar cCCEscapeChar = '\\';/* character to be used to start an escape sequence for control chars */ +uchar cCCEscapeChar = '#';/* character to be used to start an escape sequence for control chars */ int bEscapeCCOnRcv = 1; /* escape control characters on reception: 0 - no, 1 - yes */ static int bErrMsgToStderr = 1; /* print error messages to stderr (in addition to everything else)? */ int bReduceRepeatMsgs; /* reduce repeated message - 0 - no, 1 - yes */ |