mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 11:16:33 +03:00
Adds lowercase transformation
This commit is contained in:
@@ -72,7 +72,7 @@ ACTIONS = \
|
||||
actions/transformations/html_entity_decode.cc \
|
||||
actions/transformations/js_decode.cc \
|
||||
actions/transformations/length.cc \
|
||||
actions/transformations/lowercase.cc \
|
||||
actions/transformations/lower_case.cc \
|
||||
actions/transformations/md5.cc \
|
||||
actions/transformations/none.cc \
|
||||
actions/transformations/normalise_path.cc \
|
||||
|
@@ -13,7 +13,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "actions/transformations/lowercase.h"
|
||||
#include "actions/transformations/lower_case.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <string>
|
@@ -18,8 +18,8 @@
|
||||
#include "actions/action.h"
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
#ifndef SRC_ACTIONS_TRANSFORMATIONS_LOWERCASE_H_
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_LOWERCASE_H_
|
||||
#ifndef SRC_ACTIONS_TRANSFORMATIONS_LOWER_CASE_H_
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_LOWER_CASE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@@ -42,4 +42,4 @@ class LowerCase : public Transformation {
|
||||
|
||||
#endif
|
||||
|
||||
#endif // SRC_ACTIONS_TRANSFORMATIONS_LOWERCASE_H_
|
||||
#endif // SRC_ACTIONS_TRANSFORMATIONS_LOWER_CASE_H_
|
@@ -33,7 +33,7 @@
|
||||
#include "actions/transformations/html_entity_decode.h"
|
||||
#include "actions/transformations/js_decode.h"
|
||||
#include "actions/transformations/length.h"
|
||||
#include "actions/transformations/lowercase.h"
|
||||
#include "actions/transformations/lower_case.h"
|
||||
#include "actions/transformations/md5.h"
|
||||
#include "actions/transformations/none.h"
|
||||
#include "actions/transformations/normalise_path.h"
|
||||
|
Reference in New Issue
Block a user