summaryrefslogtreecommitdiffstats
path: root/runtime/rsconf.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-07-19 18:26:26 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-07-19 18:26:26 +0200
commit02d44ba72d450199838dfa25eafcdf8c759ee5d4 (patch)
tree84ea5c7a282e2d8ab683e87dbb74eee1102bd4e7 /runtime/rsconf.c
parent74c2e98c13daf60bf5371f77111196679dd7df55 (diff)
downloadrsyslog-02d44ba72d450199838dfa25eafcdf8c759ee5d4.tar.gz
rsyslog-02d44ba72d450199838dfa25eafcdf8c759ee5d4.tar.xz
rsyslog-02d44ba72d450199838dfa25eafcdf8c759ee5d4.zip
milestone: size syntax implemented
Diffstat (limited to 'runtime/rsconf.c')
-rw-r--r--runtime/rsconf.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/runtime/rsconf.c b/runtime/rsconf.c
index fd42caf9..26105e88 100644
--- a/runtime/rsconf.c
+++ b/runtime/rsconf.c
@@ -805,13 +805,6 @@ static rsRetVal setActionResumeInterval(void __attribute__((unused)) *pVal, int
}
-/* set the maximum message size */
-static rsRetVal setMaxMsgSize(void __attribute__((unused)) *pVal, long iNewVal)
-{
- return glbl.SetMaxLine(iNewVal);
-}
-
-
/* Switch the default ruleset (that, what servcies bind to if nothing specific
* is specified).
* rgerhards, 2009-06-12
@@ -1083,8 +1076,6 @@ initLegacyConf(void)
setActionResumeInterval, NULL, NULL, eConfObjGlobal));
CHKiRet(regCfSysLineHdlr((uchar *)"modload", 0, eCmdHdlrCustomHandler,
conf.doModLoad, NULL, NULL, eConfObjGlobal));
- CHKiRet(regCfSysLineHdlr((uchar *)"maxmessagesize", 0, eCmdHdlrSize,
- setMaxMsgSize, NULL, NULL, eConfObjGlobal));
CHKiRet(regCfSysLineHdlr((uchar *)"defaultruleset", 0, eCmdHdlrGetWord,
setDefaultRuleset, NULL, NULL, eConfObjGlobal));
CHKiRet(regCfSysLineHdlr((uchar *)"ruleset", 0, eCmdHdlrGetWord,