From: Matthew Jordan Date: Mon, 6 Oct 2014 12:37:56 +0000 (+0000) Subject: sdp_srtp: Add new lines to some WARNING messages X-Git-Tag: 12.7.0-rc1~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb391a8322dbdb08e6ded46642ce6f3c96efe313;p=thirdparty%2Fasterisk.git sdp_srtp: Add new lines to some WARNING messages git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@424646 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/sdp_srtp.c b/main/sdp_srtp.c index cf19b0afdd..31d633e387 100644 --- a/main/sdp_srtp.c +++ b/main/sdp_srtp.c @@ -232,12 +232,12 @@ int ast_sdp_crypto_process(struct ast_rtp_instance *rtp, struct ast_sdp_srtp *sr session_params = strsep(&str, " "); if (!tag || !suite) { - ast_log(LOG_WARNING, "Unrecognized a=%s", attr); + ast_log(LOG_WARNING, "Unrecognized crypto attribute a=%s\n", attr); return -1; } if (!ast_strlen_zero(session_params)) { - ast_log(LOG_WARNING, "Unsupported crypto parameters: %s", session_params); + ast_log(LOG_WARNING, "Unsupported crypto parameters: %s\n", session_params); return -1; }