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:
authorSergejs Paskevics <git-no-reply@zabbix.com>2018-01-29 15:56:26 +0300
committerSergejs Paskevics <git-no-reply@zabbix.com>2018-01-29 15:56:26 +0300
commit566a2a423167451b8e41120cf2b6e3331d9df449 (patch)
treef25af2a1083ead71eb73ceb29b9a5a50bb2a4f14 /include
parente81fc3adddb69ac65134e41f6eb7cbd2b91d09b9 (diff)
........S. [ZBX-13194] fixed incorrect processing of zabbix[wcache,value,*] internal check
Diffstat (limited to 'include')
-rw-r--r--include/dbcache.h4
-rw-r--r--include/preproc.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/dbcache.h b/include/dbcache.h
index e0228613a78..3fbb9efe672 100644
--- a/include/dbcache.h
+++ b/include/dbcache.h
@@ -523,8 +523,8 @@ zbx_preproc_item_t;
int is_item_processed_by_server(unsigned char type, const char *key);
int in_maintenance_without_data_collection(unsigned char maintenance_status, unsigned char maintenance_type,
unsigned char type);
-void dc_add_history(zbx_uint64_t itemid, unsigned char item_flags, AGENT_RESULT *result, const zbx_timespec_t *ts,
- unsigned char state, const char *error);
+void dc_add_history(zbx_uint64_t itemid, unsigned char item_value_type, unsigned char item_flags,
+ AGENT_RESULT *result, const zbx_timespec_t *ts, unsigned char state, const char *error);
void dc_flush_history(void);
int DCsync_history(int sync_type, int *sync_num);
int init_database_cache(char **error);
diff --git a/include/preproc.h b/include/preproc.h
index 9c633af9ffb..d0a19783a41 100644
--- a/include/preproc.h
+++ b/include/preproc.h
@@ -25,8 +25,8 @@
/* the following functions are implemened differently for server and proxy */
-void zbx_preprocess_item_value(zbx_uint64_t itemid, unsigned char item_flags, AGENT_RESULT *result,
- zbx_timespec_t *ts, unsigned char state, char *error);
+void zbx_preprocess_item_value(zbx_uint64_t itemid, unsigned char item_value_type, unsigned char item_flags,
+ AGENT_RESULT *result, zbx_timespec_t *ts, unsigned char state, char *error);
void zbx_preprocessor_flush(void);
zbx_uint64_t zbx_preprocessor_get_queue_size(void);