Details
-
Type:
Incident report
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.1
-
Fix Version/s: 1.8.2, 1.9.0 (alpha)
-
Component/s: Proxy (P), Server (S)
-
Labels:None
Description
In expression builder frontend and database case_sensitive is interpreted as follows: 0-case insesitive, 1-case sensitive
Erroneously, in server and agent case_sensiteve flag is interpreted in reverse: 0-case sensitive, 1-case insensitive
Fix is actually simple - patch include\common.h
typedef enum
{
- ZBX_CASE_SENSITIVE = 0,
- ZBX_IGNORE_CASE
+ ZBX_IGNORE_CASE = 0,
+ ZBX_CASE_SENSITIVE,
} zbx_case_sensitive_t;
Please include this fix in future releases.
Btw, thank you very much for great piece of code anyway!