From ff775a17cfbf8e65e8993f547db7d12ae2eba776 Mon Sep 17 00:00:00 2001 From: Mark Michelson <mmichelson@digium.com> Date: Wed, 28 Jan 2015 17:12:49 +0000 Subject: [PATCH] Fix compilation error from previous patch. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@431298 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- funcs/func_curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- GitLab