Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2022-11-09 13:52:09 +0300
committerDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2022-11-09 13:52:09 +0300
commit8aac0f7b3ed2d906f6612a3e94ef71b66999d4fc (patch)
treed838d53c0aeaca4a6aaa0fd212034b04db3d9e16
parent0ed587970fb1bdcc5b390718f0dd1d961db30e4d (diff)
........S. [ZBX-21616] fixed function description comment
-rw-r--r--src/zabbix_server/lld/lld.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/zabbix_server/lld/lld.c b/src/zabbix_server/lld/lld.c
index 3e39944f5fb..2f18674d761 100644
--- a/src/zabbix_server/lld/lld.c
+++ b/src/zabbix_server/lld/lld.c
@@ -272,19 +272,19 @@ static int filter_condition_match(const struct zbx_json_parse *jp_row, const zbx
return ret;
}
-/******************************************************************************
- * *
- * Purpose: check if the lld data passes filter evaluation by and rule *
- * *
- * Parameters: filter - [IN] the lld filter *
- * jp_row - [IN] the lld data row *
- * lld_macro_paths - [IN] use json path to extract from jp_row *
- * info - [OUT] the warning description *
- * *
- * Return value: SUCCEED - the lld data passed filter evaluation *
- * FAIL - otherwise *
- * *
- ******************************************************************************/
+/****************************************************************************************
+ * *
+ * Purpose: check if the lld data passes filter evaluation by and/or/andor rules *
+ * *
+ * Parameters: filter - [IN] the lld filter *
+ * jp_row - [IN] the lld data row *
+ * lld_macro_paths - [IN] use json path to extract from jp_row *
+ * info - [OUT] the warning description *
+ * *
+ * Return value: SUCCEED - the lld data passed filter evaluation *
+ * FAIL - otherwise *
+ * *
+ ****************************************************************************************/
static int filter_evaluate_and_or_andor(const lld_filter_t *filter, const struct zbx_json_parse *jp_row,
const zbx_vector_ptr_t *lld_macro_paths, char **info)
{