mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
Change syntax: add brackets to condition block
This commit is contained in:
parent
bb70ff06a4
commit
7e3c807c0d
@ -88,7 +88,9 @@ public:
|
||||
ConfigValue() = default;
|
||||
|
||||
void merge(const ConfigValue<T>* from) {
|
||||
if (m_set || !from->m_set) return;
|
||||
if (m_set || !from->m_set) {
|
||||
return;
|
||||
}
|
||||
m_set = true;
|
||||
m_value = from->m_value;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user