summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-02-04 14:06:22 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-02-04 14:06:22 +0100
commit819ac126e2cc85916bee32575c85b3c8d7317325 (patch)
tree3024fbcaa7e68ddd0ccbacabb65ec2dc89b0f017
parente38b5452295890c8f4a47c00a43f5cd3cd6375b2 (diff)
downloadrsyslog-819ac126e2cc85916bee32575c85b3c8d7317325.tar.gz
rsyslog-819ac126e2cc85916bee32575c85b3c8d7317325.tar.xz
rsyslog-819ac126e2cc85916bee32575c85b3c8d7317325.zip
bugfix/omhdfs: directive $OMHDFSFileName rendered unusable
...due to a search and replace-induced bug ;)
-rw-r--r--ChangeLog4
-rw-r--r--plugins/omhdfs/omhdfs.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 485cac17..4e62100e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
---------------------------------------------------------------------------
+Version 6.1.4 [DEVEL] (rgerhards), 2011-02-??
+- bugfix/omhdfs: directive $OMHDFSFileName rendered unusable
+ due to a search and replace-induced bug ;)
+---------------------------------------------------------------------------
Version 6.1.3 [DEVEL] (rgerhards), 2011-02-01
- experimental support for monogodb added
- added $IMUDPSchedulingPolicy and $IMUDPSchedulingPriority config settings
diff --git a/plugins/omhdfs/omhdfs.c b/plugins/omhdfs/omhdfs.c
index 1fe9b46b..1bf10bd7 100644
--- a/plugins/omhdfs/omhdfs.c
+++ b/plugins/omhdfs/omhdfs.c
@@ -477,7 +477,7 @@ CODEmodInit_QueryRegCFSLineHdlr
CHKmalloc(files = create_hashtable(20, hash_from_string, key_equals_string,
fileObjDestruct4Hashtable));
- CHKiRet(regCfSysLineHdlr((uchar *)"omhdfscs.fileName", 0, eCmdHdlrGetWord, NULL, &cs.fileName, NULL, eConfObjAction));
+ CHKiRet(regCfSysLineHdlr((uchar *)"omhdfsfilename", 0, eCmdHdlrGetWord, NULL, &cs.fileName, NULL, eConfObjAction));
CHKiRet(regCfSysLineHdlr((uchar *)"omhdfshost", 0, eCmdHdlrGetWord, NULL, &cs.hdfsHost, NULL, eConfObjAction));
CHKiRet(regCfSysLineHdlr((uchar *)"omhdfsport", 0, eCmdHdlrInt, NULL, &cs.hdfsPort, NULL, eConfObjAction));
CHKiRet(regCfSysLineHdlr((uchar *)"omhdfsdefaulttemplate", 0, eCmdHdlrGetWord, NULL, &cs.dfltTplName, NULL, eConfObjAction));