summaryrefslogtreecommitdiff
path: root/pjsip
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-02-08 12:57:55 +0000
committerBenny Prijono <bennylp@teluu.com>2008-02-08 12:57:55 +0000
commit173b4c6b96030dcb4dc3b16e8011fb443d891cb9 (patch)
tree40b1913fa9e038ed9ae4ceb80bdd31071593edfb /pjsip
parentcbfbffa3025842391ac14e056410524a36abe0fb (diff)
Minor error: wrong logging info when printing RTP socket address
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1786 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_media.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_media.c b/pjsip/src/pjsua-lib/pjsua_media.c
index e1aec508..71db66cf 100644
--- a/pjsip/src/pjsua-lib/pjsua_media.c
+++ b/pjsip/src/pjsua-lib/pjsua_media.c
@@ -384,10 +384,10 @@ static pj_status_t create_rtp_rtcp_sock(const pjsua_transport_config *cfg,
pj_memcpy(&skinfo->rtcp_addr_name,
&mapped_addr[1], sizeof(pj_sockaddr_in));
- PJ_LOG(4,(THIS_FILE, "RTP socket reachable at %s:%d",
+ PJ_LOG(4,(THIS_FILE, "RTP socket reachable at %s",
pj_sockaddr_print(&skinfo->rtp_addr_name, addr_buf,
sizeof(addr_buf), 3)));
- PJ_LOG(4,(THIS_FILE, "RTCP socket reachable at %s:%d",
+ PJ_LOG(4,(THIS_FILE, "RTCP socket reachable at %s",
pj_sockaddr_print(&skinfo->rtcp_addr_name, addr_buf,
sizeof(addr_buf), 3)));