From 1e771acf2e4f4b9374f623edbf44424ecaf1a88a Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Mon, 14 Apr 2008 14:52:46 +0000 Subject: [PATCH] It is possible for the remote side to say they want T38 but not give any capabilities. (closes issue #12414) Reported by: MVF git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@114103 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index c21815e231..03f5ae091d 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -5489,7 +5489,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req) } if (!newjointcapability) { /* If T.38 was not negotiated either, totally bail out... */ - if (!p->t38.jointcapability || !p->t38.peercapability) { + if (!p->t38.jointcapability || !udptlportno) { ast_log(LOG_NOTICE, "No compatible codecs, not accepting this offer!\n"); /* Do NOT Change current setting */ return -1;