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:54:30 +0300
commite6fe3bbc2a53bd7a3fafaab28f59c06c0794d228 (patch)
tree72ddec7af208c6f554c31954bdc508616f14f7c7
parent4bf9e2d07004f061a78c82338fd027dbfb712ea7 (diff)
........S. [ZBX-21616] fixed function description comment
(cherry picked from commit 8aac0f7b3ed2d906f6612a3e94ef71b66999d4fc)
-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 63631903e3f..cb9b5c7ee0c 100644
--- a/src/zabbix_server/lld/lld.c
+++ b/src/zabbix_server/lld/lld.c
@@ -273,19 +273,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)
{