[svn-commits] mmichelson: branch 11 r431298 - /branches/11/funcs/func_curl.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jan 28 11:12:58 CST 2015


Author: mmichelson
Date: Wed Jan 28 11:12:49 2015
New Revision: 431298

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=431298
Log:
Fix compilation error from previous patch.


Modified:
    branches/11/funcs/func_curl.c

Modified: branches/11/funcs/func_curl.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/funcs/func_curl.c?view=diff&rev=431298&r1=431297&r2=431298
==============================================================================
--- branches/11/funcs/func_curl.c (original)
+++ branches/11/funcs/func_curl.c Wed Jan 28 11:12:49 2015
@@ -632,7 +632,7 @@
 	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;
 	}
 




More information about the svn-commits mailing list