Skip to content
Snippets Groups Projects
Commit 8dbcff6f authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

Merged revisions 31161 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r31161 | kpfleming | 2006-05-31 17:26:38 -0500 (Wed, 31 May 2006) | 2 lines

silence a warning message that is not a warning

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31162 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent b9403bee
No related branches found
No related tags found
No related merge requests found
......@@ -762,7 +762,8 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
ssrc = ntohl(rtpheader[2]);
if (!mark && rtp->rxssrc && rtp->rxssrc != ssrc) {
ast_log(LOG_WARNING, "Forcing Marker bit, because SSRC has changed\n");
if (option_verbose > 1)
ast_verbose(VERBOSE_PREFIX_2 "Forcing Marker bit, because SSRC has changed\n");
mark = 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment