dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@31162 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2006-05-31 22:28:03 +00:00
parent 1f161644dd
commit c6e5f7e826
1 changed files with 2 additions and 1 deletions

3
rtp.c
View File

@ -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;
}