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:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2009-06-11 19:39:57 +0400
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2009-06-11 19:39:57 +0400
commitd49567cb70b0a15fb7d936e1521b7e197b2049a4 (patch)
tree8fceb7bd0fbd4587526e9dfca86dbecd302331cc /include/base64.h
parentd07b79cf414eec93b99c63e68d2e20a09e68d273 (diff)
- [ZBX-952] increased max length of processed text and log data to 64KB
[svn merge svn://svn.zabbix.com/branches/1.6 -r7402:7404]
Diffstat (limited to 'include/base64.h')
-rw-r--r--include/base64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/base64.h b/include/base64.h
index b9d6d8f23c4..147e50b0e47 100644
--- a/include/base64.h
+++ b/include/base64.h
@@ -21,6 +21,6 @@
#define ZABBIX_BASE64_H
void str_base64_encode(const char *p_str, char *p_b64str, int in_size);
-void str_base64_decode(const char *p_b64str, char *p_str, int *p_out_size);
+void str_base64_decode(const char *p_b64str, char *p_str, int maxsize, int *p_out_size);
#endif /* ZABBIX_BASE64_H */