Fix minor filter problems

Regexfilter tried to retrieve wrong parameter and the `options` parameter
was not added to the filters.
This commit is contained in:
Markus Mäkelä
2017-01-09 14:53:21 +02:00
parent da5d53bbe0
commit 2ee257eb48
2 changed files with 3 additions and 9 deletions

View File

@ -133,7 +133,7 @@ MXS_MODULE* MXS_CREATE_MODULE()
{"user", MXS_MODULE_PARAM_STRING},
{"log_trace", MXS_MODULE_PARAM_BOOL, "false"},
{"log_file", MXS_MODULE_PARAM_STRING},
{"option", MXS_MODULE_PARAM_ENUM, "ignorecase", MXS_MODULE_OPT_NONE, option_values},
{"options", MXS_MODULE_PARAM_ENUM, "ignorecase", MXS_MODULE_OPT_NONE, option_values},
{MXS_END_MODULE_PARAMS}
}
};