diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-07-11 15:26:23 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-07-11 15:26:23 +0200 |
commit | 06db028d606874a8e2848dd9b17733dfef8d4587 (patch) | |
tree | 5ed9a003f605c2a94897bf6766c2c5a97b445dc3 | |
parent | ba5f628cbb43d6a4add15c6fab50e35b5c54c5b8 (diff) | |
download | rsyslog-06db028d606874a8e2848dd9b17733dfef8d4587.tar.gz rsyslog-06db028d606874a8e2848dd9b17733dfef8d4587.tar.bz2 rsyslog-06db028d606874a8e2848dd9b17733dfef8d4587.zip |
bugfix: omhdfs did no longer compile
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | plugins/omhdfs/omhdfs.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -13,6 +13,7 @@ Version 6.5.0 [devel] 2012-0?-?? in some speedup (but serious loss of debugging capabilities) - added new 0mq plugins (via czmq lib) Thanks to David Kelly for contributing these modules +- bugfix: omhdfs did no longer compile --------------------------------------------------------------------------- Version 6.3.13 [BETA] 2012-06-?? - support for elasticsearch via omelasticsearch added diff --git a/plugins/omhdfs/omhdfs.c b/plugins/omhdfs/omhdfs.c index cd14d03c..f8a7e739 100644 --- a/plugins/omhdfs/omhdfs.c +++ b/plugins/omhdfs/omhdfs.c @@ -67,8 +67,8 @@ typedef struct configSettings_s { uchar *dfltTplName; /* default template name to use */ int hdfsPort; } configSettings_t; +static configSettings_t cs; -SCOPING_SUPPORT; /* must be set AFTER configSettings_t is defined */ BEGINinitConfVars /* (re)set config variables to default values */ CODESTARTinitConfVars |