aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-13 15:47:53 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-13 15:47:53 +0000
commitfe28fe06df3c3fe0b2bb961cb6e40d7e946f6f88 (patch)
tree6565aceafb07bf998477bb3b75c540e88255509b /channels
parentbccb48c168579309ea1497bebb12f2629abaa83d (diff)
Merged revisions 212113 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r212113 | kpfleming | 2009-08-13 10:46:25 -0500 (Thu, 13 Aug 2009) | 3 lines Ensure that T38FaxVersion is put into outgoing SDP in the proper case. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@212116 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 30be2922b..3b2cbd039 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -9652,7 +9652,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int
ast_str_append(&m_modem, 0, "m=image %d udptl t38", ntohs(udptldest.sin_port));
- ast_str_append(&a_modem, 0, "a=T38Faxversion:%d\r\n", p->t38.our_parms.version);
+ ast_str_append(&a_modem, 0, "a=T38FaxVersion:%d\r\n", p->t38.our_parms.version);
ast_str_append(&a_modem, 0, "a=T38MaxBitRate:%d\r\n", t38_get_rate(p->t38.our_parms.rate));
if (p->t38.our_parms.fill_bit_removal) {
ast_str_append(&a_modem, 0, "a=T38FaxFillBitRemoval\r\n");