summaryrefslogtreecommitdiffstats
path: root/include/common.h
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-02-12 12:39:13 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-02-12 12:39:13 +0000
commit44c297403e8be585e6dd89ccfee7990dad1feadf (patch)
tree0b54dcfdff4ab1d02a9a239e7038487a3376758c /include/common.h
parent8db0715194e777206d508d8c354067b7ddef1645 (diff)
downloadzabbix-44c297403e8be585e6dd89ccfee7990dad1feadf.tar.gz
zabbix-44c297403e8be585e6dd89ccfee7990dad1feadf.tar.xz
zabbix-44c297403e8be585e6dd89ccfee7990dad1feadf.zip
- fixed large SQLs calling (Eugene)
- increased message size for alerts (Eugene) - fixed macros substitution for messages (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@3821 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 750f0fd7..d20a2ff2 100644
--- a/include/common.h
+++ b/include/common.h
@@ -509,7 +509,9 @@ int set_result_type(AGENT_RESULT *result, int value_type, char *c);
size_t zbx_strlcpy(char *dst, const char *src, size_t siz);
size_t zbx_strlcat(char *dst, const char *src, size_t siz);
-char* zbx_dvsprintf(const char *f, va_list args);
+char* zbx_dvsprintf(char *dest, const char *f, va_list args);
+char* zbx_dsprintf(char *dest, const char *f, ...);
+char* zbx_strdcat(char *dest, const char *src);
int replace_param(const char *cmd, const char *param, char *out, int outlen);