]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 258934 via svnmerge from
authorLeif Madsen <leif@leifmadsen.com>
Mon, 26 Apr 2010 16:00:35 +0000 (16:00 +0000)
committerLeif Madsen <leif@leifmadsen.com>
Mon, 26 Apr 2010 16:00:35 +0000 (16:00 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r258934 | lmadsen | 2010-04-26 10:59:34 -0500 (Mon, 26 Apr 2010) | 7 lines

  Small error in the T.140 RTP port verbose log.

  (closes issue #16988)
  Reported by: frawd
  Patches:
        chan_sip_sdp_verbose_fix.diff uploaded by frawd (license 610)
  Tested by: russell
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@258935 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index a9e2cf18e23c1e8b62ada7af9225a3b8adfa28d9..4c661682cc14c933953e876ec74fc1656b99738d 100644 (file)
@@ -8475,7 +8475,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action
                        memcpy(&tsin.sin_addr, thp->h_addr, sizeof(tsin.sin_addr));
                        ast_rtp_set_peer(p->trtp, &tsin);
                        if (debug) 
-                               ast_verbose("Peer T.140 RTP is at port %s:%d\n", ast_inet_ntoa(vsin.sin_addr), ntohs(vsin.sin_port));
+                               ast_verbose("Peer T.140 RTP is at port %s:%d\n", ast_inet_ntoa(tsin.sin_addr), ntohs(tsin.sin_port));
                        if ((p->jointcapability & AST_FORMAT_T140RED)) {
                                p->red = 1;
                                rtp_red_init(p->trtp, 300, red_data_pt, 2);
@@ -8504,7 +8504,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action
                                        }
                                }
                        } else {
-                               memcpy(&isin.sin_addr, ihp->h_addr, sizeof(sin.sin_addr));
+                               memcpy(&isin.sin_addr, ihp->h_addr, sizeof(isin.sin_addr));
                        }
                        ast_udptl_set_peer(p->udptl, &isin);
                        if (debug)