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:
authorEugene Grigorjev <git-no-reply@zabbix.com>2007-03-29 18:07:35 +0400
committerEugene Grigorjev <git-no-reply@zabbix.com>2007-03-29 18:07:35 +0400
commite7948d5da20f65057b694a7093f981f84c7fb0d9 (patch)
treeab3be6ec5b1bd085dcd1f18301252ac84a9a25c2 /include/base64.h
parentdc084630b5795a99164ef556d77a7d37c3f36425 (diff)
- improved ZABBIX sender (Eugene)
- fixed popup menu on frontend for hosts screen (Eugene) - monir fixes of C code (Eugene)
Diffstat (limited to 'include/base64.h')
-rw-r--r--include/base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/base64.h b/include/base64.h
index b7e43d244dc..b9d6d8f23c4 100644
--- a/include/base64.h
+++ b/include/base64.h
@@ -20,7 +20,7 @@
#ifndef ZABBIX_BASE64_H
#define ZABBIX_BASE64_H
-void str_base64_encode(char *p_str, char *p_b64str, int in_size);
-void str_base64_decode(char *p_b64str, char *p_str, int *p_out_size);
+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);
#endif /* ZABBIX_BASE64_H */