[svn-commits] file: branch 13 r432614 - /branches/13/res/res_rtp_asterisk.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sat Mar 7 19:46:30 CST 2015


Author: file
Date: Sat Mar  7 19:46:17 2015
New Revision: 432614

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=432614
Log:
res_rtp_asterisk: Fix wrongful use of USE_PJPROJECT define.

As pjproject is now used as a shared library a different define,
HAVE_PJPROJECT, is used to specify if pjproject is present.

ASTERISK-24830 #close
Reported by: Stefan Engström

Modified:
    branches/13/res/res_rtp_asterisk.c

Modified: branches/13/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/res_rtp_asterisk.c?view=diff&rev=432614&r1=432613&r2=432614
==============================================================================
--- branches/13/res/res_rtp_asterisk.c (original)
+++ branches/13/res/res_rtp_asterisk.c Sat Mar  7 19:46:17 2015
@@ -4994,7 +4994,7 @@
 	struct ast_rtp *rtp = ast_rtp_instance_get_data(instance);
 
 	/* If ICE negotiation is enabled the DTLS Handshake will be performed upon completion of it */
-#ifdef USE_PJPROJECT
+#ifdef HAVE_PJPROJECT
 	if (rtp->ice) {
 		return 0;
 	}




More information about the svn-commits mailing list