From 9b1ba6bf39893a6ef13d825138a3da4f3a90ae5d Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Thu, 13 Aug 2009 13:53:12 +0000 Subject: [PATCH] Merged revisions 212067 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r212067 | file | 2009-08-13 10:51:04 -0300 (Thu, 13 Aug 2009) | 2 lines Check an actual populated variable when seeing if we need to do video or not. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@212068 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 df0e55255f..add4e0609a 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -8554,7 +8554,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int } /* Check if we need video in this call */ - if (add_audio && (capability & AST_FORMAT_VIDEO_MASK) && !p->novideo) { + if (add_audio && (p->jointcapability & AST_FORMAT_VIDEO_MASK) && !p->novideo) { if (p->vrtp) { needvideo = TRUE; ast_debug(2, "This call needs video offers!\n");