From: Mark Michelson Date: Wed, 28 Jan 2015 17:12:49 +0000 (+0000) Subject: Fix compilation error from previous patch. X-Git-Tag: 11.16.0-rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff775a17cfbf8e65e8993f547db7d12ae2eba776;p=thirdparty%2Fasterisk.git Fix compilation error from previous patch. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@431298 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_curl.c b/funcs/func_curl.c index 480e677de1..767cb791a9 100644 --- a/funcs/func_curl.c +++ b/funcs/func_curl.c @@ -632,7 +632,7 @@ static int acf_curl_helper(struct ast_channel *chan, const char *cmd, char *info AST_STANDARD_APP_ARGS(args, info); if (url_is_vulnerable(args.url)) { - ast_log(LOG_ERROR, "URL '%s' is vulnerable to HTTP injection attacks. Aborting CURL() call.\n"); + ast_log(LOG_ERROR, "URL '%s' is vulnerable to HTTP injection attacks. Aborting CURL() call.\n", args.url); return -1; }