git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7114 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Kevin P. Fleming 21 years ago
parent 492087f45f
commit 2b656be753

@ -1,5 +1,7 @@
2005-11-16 Kevin P. Fleming <kpfleming@limerick.digium.com>
* channels/chan_sip.c (process_sdp): don't pass video codec number into ast_getformatname(), it is not valid input for that function (issue #5764)
* pbx/pbx_ael.c (match_assignment): properly parse equal signs surrounded by whitespace (issue #5761)
2005-11-16 Kevin P. Fleming <kpfleming@digium.com>

@ -3461,7 +3461,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req)
return -1;
}
if (debug)
ast_verbose("Found video format %s\n", ast_getformatname(codec));
ast_verbose("Found video format %s\n", codec);
ast_rtp_set_m_type(p->vrtp, codec);
codecs = ast_skip_blanks(codecs + len);
}

Loading…
Cancel
Save