From: Matthias Nick Date: Wed, 30 Sep 2009 19:02:00 +0000 (+0000) Subject: changed the prototype definition of csv_quote X-Git-Tag: 1.4.27-rc2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c179867fb4267dda2f17f70ebf9b07454e1b1679;p=thirdparty%2Fasterisk.git changed the prototype definition of csv_quote git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@221303 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_strings.c b/funcs/func_strings.c index 582691c996..dd9431349e 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;