diff options
author | Ryo Fujita <rfujita@redhat.com> | 2008-07-16 09:00:45 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-07-16 09:00:45 +0200 |
commit | c70fd89dd810665f4143fa7006c0237bf4410a8a (patch) | |
tree | c9ba73b44dc5d25f311968959f85cbadc0a4eb32 | |
parent | e7982666b831ad7996275d5b55a91f4053195d05 (diff) | |
download | rsyslog-c70fd89dd810665f4143fa7006c0237bf4410a8a.tar.gz rsyslog-c70fd89dd810665f4143fa7006c0237bf4410a8a.tar.xz rsyslog-c70fd89dd810665f4143fa7006c0237bf4410a8a.zip |
fixed typo in source comment
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | syslogd.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -19,6 +19,7 @@ Version 3.18.1 (rgerhards), 2008-07-?? (20 minutes) in some code pathes, what looked to the user like mark messages were never written. - doc bugfix: fixed some typos in rsyslog.conf man page +- fixed typo in source comment - thanks to Rio Fujita --------------------------------------------------------------------------- Version 3.18.0 (rgerhards), 2008-07-11 - begun a new v3-stable based on former 3.17.4 beta plus patches to @@ -3093,7 +3093,7 @@ int realMain(int argc, char **argv) case 'Q': /* dont resolve hostnames in ACL to IPs */ case 's': case 'u': /* misc user settings */ - case 'w': /* disable disallowed host warnigs */ + case 'w': /* disable disallowed host warnings */ case 'x': /* disable dns for remote messages */ CHKiRet(bufOptAdd(ch, optarg)); break; @@ -3337,7 +3337,7 @@ int realMain(int argc, char **argv) if(atoi(arg) == 1) bParseHOSTNAMEandTAG = 0; break; - case 'w': /* disable disallowed host warnigs */ + case 'w': /* disable disallowed host warnings */ option_DisallowWarning = 0; break; case 'x': /* disable dns for remote messages */ |