aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authormnick <mnick@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-30 19:02:00 +0000
committermnick <mnick@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-30 19:02:00 +0000
commit4a638d2bdd9d6efc0b5f05faa122c16e3a096432 (patch)
treeb660e590d340ccd8b63f559ffe57456f26f5ab1b /funcs
parentca09bf6d678100b5cf892328511d073a6f9282b8 (diff)
changed the prototype definition of csv_quote
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@221303 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index 582691c99..dd9431349 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -422,7 +422,7 @@ static struct ast_custom_function quote_function = {
.read = quote,
};
-static int csv_quote(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len)
+static int csv_quote(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
{
char *bufptr = buf, *dataptr = data;