summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/conf.c3
-rw-r--r--runtime/queue.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/runtime/conf.c b/runtime/conf.c
index d98a147b..f47ac501 100644
--- a/runtime/conf.c
+++ b/runtime/conf.c
@@ -741,7 +741,8 @@ rsRetVal cflineDoAction(rsconf_t *conf, uchar **p, action_t **ppAction)
*/
if(currConfObj == eConfObjAction)
currConfObj = eConfObjActionWaitEnd;
- if((iRet = addAction(&pAction, pMod, pModData, pOMSR, NULL, (iRet == RS_RET_SUSPENDED)? 1 : 0)) == RS_RET_OK) {
+ if((iRet = addAction(&pAction, pMod, pModData, pOMSR, NULL, NULL,
+ (iRet == RS_RET_SUSPENDED)? 1 : 0)) == RS_RET_OK) {
/* now check if the module is compatible with select features */
if(pMod->isCompatibleWithFeature(sFEATURERepeatedMsgReduction) == RS_RET_OK)
pAction->f_ReduceRepeated = loadConf->globals.bReduceRepeatMsgs;
diff --git a/runtime/queue.c b/runtime/queue.c
index 1ceec5da..5f224e7e 100644
--- a/runtime/queue.c
+++ b/runtime/queue.c
@@ -2505,7 +2505,7 @@ finalize_it:
/* take v6 config list and extract the queue params out of it. Hand the
- * param values back to the caler. Caller is responsible for destructing
+ * param values back to the caller. Caller is responsible for destructing
* them when no longer needed. Caller can use this param block to configure
* all parameters for a newly created queue with one call to qqueueSetParams().
* rgerhards, 2011-07-22