summaryrefslogtreecommitdiff
path: root/rtp.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-07-31 23:02:55 +0000
committerMark Spencer <markster@digium.com>2004-07-31 23:02:55 +0000
commit13a45232fae7c489c99240009334b483b04f7bfc (patch)
tree385c16243888c1a613e781d26c29cdce85f540b8 /rtp.c
parentc4bfcdeec5fa188bff3794c98efc875f1ac564d2 (diff)
Get other instance of 101 changed to "payload" (bug #2191)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3554 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtp.c b/rtp.c
index 55a4e3578..518817da5 100755
--- a/rtp.c
+++ b/rtp.c
@@ -1017,7 +1017,7 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
}
if (x ==0) {
/* Clear marker bit and increment seqno */
- rtpheader[0] = htonl((2 << 30) | (101 << 16) | (rtp->seqno++));
+ rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->seqno++));
/* Make duration 800 (100ms) */
rtpheader[3] |= htonl((800));
/* Set the End bit for the last 3 */