Skip to content
Snippets Groups Projects
Commit ff775a17 authored by Mark Michelson's avatar Mark Michelson
Browse files

Fix compilation error from previous patch.


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@431298 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent c9f0b565
No related branches found
No related tags found
No related merge requests found
...@@ -632,7 +632,7 @@ static int acf_curl_helper(struct ast_channel *chan, const char *cmd, char *info ...@@ -632,7 +632,7 @@ static int acf_curl_helper(struct ast_channel *chan, const char *cmd, char *info
AST_STANDARD_APP_ARGS(args, info); AST_STANDARD_APP_ARGS(args, info);
if (url_is_vulnerable(args.url)) { 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; return -1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment