Fix in parser: now understanding the removeCommentsChar transformation

SpiderLabs/ModSecurity#1098
This commit is contained in:
Felipe Zimmerle
2016-04-04 15:23:30 -03:00
parent 19137452c4
commit 6f93563fc2
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(parity_even_7bit) { return new ParityEven7bit(a); }
IF_MATCH(parity_odd_7bit) { return new ParityOdd7bit(a); }
IF_MATCH(parity_zero_7bit) { return new ParityZero7bit(a); }
IF_MATCH(remove_comments_char) { return new RemoveCommentsChar(a); }
IF_MATCH(removeCommentsChar) { return new RemoveCommentsChar(a); }
IF_MATCH(remove_comments) { return new RemoveComments(a); }
IF_MATCH(removeNulls) { return new RemoveNulls(a); }
IF_MATCH(remove_whitespace) { return new RemoveWhitespace(a); }