From bf63baa0479ce447bcc91c361c58a4ab3248f672 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 12 Oct 2004 21:51:08 +0000 Subject: [PATCH] Fix MGCP build, SIP should destroy on temponly, not on show peer git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3985 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_mgcp.c | 4 ++-- channels/chan_sip.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c index b81f8058cf..fd4aff6a8a 100755 --- a/channels/chan_mgcp.c +++ b/channels/chan_mgcp.c @@ -1951,7 +1951,7 @@ static int transmit_modify_with_sdp(struct mgcp_subchannel *sub, struct ast_rtp add_header(&resp, "X", sub->txident); add_header(&resp, "I", sub->cxident); /*add_header(&resp, "S", "");*/ - ast_rtp_offered_from_local(rtp, 0); + ast_rtp_offered_from_local(sub->rtp, 0); add_sdp(&resp, sub, rtp); /* SC: fill in new fields */ resp.cmd = MGCP_CMD_MDCX; @@ -1985,7 +1985,7 @@ static int transmit_connect_with_sdp(struct mgcp_subchannel *sub, struct ast_rtp /* SC: X header should not be sent. kept for compatibility */ add_header(&resp, "X", sub->txident); /*add_header(&resp, "S", "");*/ - ast_rtp_offered_from_local(rtp, 1); + ast_rtp_offered_from_local(sub->rtp, 1); add_sdp(&resp, sub, rtp); /* SC: fill in new fields */ resp.cmd = MGCP_CMD_CRCX; diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 83e8852638..4f333694e4 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -5749,7 +5749,7 @@ static int sip_show_peer(int fd, int argc, char *argv[]) ast_mutex_unlock(&peerl.lock); - if (peer && peer->dynamic) { + if (peer && peer->temponly) { destroy_peer(peer); } return RESULT_SUCCESS;