From 5837d81bbfeffa60782866f07b065d11cfbf5740 Mon Sep 17 00:00:00 2001 From: russell Date: Thu, 28 Jan 2010 18:35:54 +0000 Subject: Merged revisions 243860 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r243860 | russell | 2010-01-28 12:35:15 -0600 (Thu, 28 Jan 2010) | 2 lines Add a missing line terminator for T.38 SDP. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@243861 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'channels/chan_sip.c') diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 92860b27f..ee6e62c88 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -10237,7 +10237,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int /* We break with the "recommendation" and send our IP, in order that our peer doesn't have to ast_gethostbyname() us */ - ast_str_append(&m_modem, 0, "m=image %d udptl t38", ntohs(udptldest.sin_port)); + ast_str_append(&m_modem, 0, "m=image %d udptl t38\r\n", 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=T38MaxBitRate:%d\r\n", t38_get_rate(p->t38.our_parms.rate)); -- cgit v1.2.3