diff --git a/ChangeLog b/ChangeLog index 65c8d78e700a05118ae977a8d1b6abc0b66949bb..b49c04098909868741f58691f7a16ca0af022bea 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-11-07 Kevin P. Fleming <kpfleming@digium.com> + * rtp.c: use unsigned format for debug packet output (issue #5595) + * asterisk.c (main): force a dnsmgr background refresh after all other modules are initialized (issue #5599) * dnsmgr.c: add ability to start a background refresh on demand (issue #5599) diff --git a/rtp.c b/rtp.c index 2893ceff3d219f6a5171c20e44667989143eebf9..75979d8215b6696ad4aee03be90705da87a158ac 100755 --- a/rtp.c +++ b/rtp.c @@ -1149,7 +1149,7 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit) ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr), ntohs(rtp->them.sin_port), strerror(errno)); if (rtp_debug_test_addr(&rtp->them)) - ast_verbose("Sent RTP packet to %s:%d (type %d, seq %d, ts %d, len %d)\n", + ast_verbose("Sent RTP packet to %s:%d (type %d, seq %u, ts %u, len %u)\n", ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr), ntohs(rtp->them.sin_port), payload, rtp->seqno, rtp->lastdigitts, res - hdrlen); } @@ -1292,7 +1292,7 @@ static int ast_rtp_raw_write(struct ast_rtp *rtp, struct ast_frame *f, int codec } if(rtp_debug_test_addr(&rtp->them)) - ast_verbose("Sent RTP packet to %s:%d (type %d, seq %d, ts %d, len %d)\n" + ast_verbose("Sent RTP packet to %s:%d (type %d, seq %u, ts %u, len %u)\n" , ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->them.sin_addr), ntohs(rtp->them.sin_port), codec, rtp->seqno, rtp->lastts,res - hdrlen); }