[svn-commits] kpfleming: branch 1.4 r65967 -
/branches/1.4/channels/chan_gtalk.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu May 24 11:28:49 MST 2007
Author: kpfleming
Date: Thu May 24 13:28:48 2007
New Revision: 65967
URL: http://svn.digium.com/view/asterisk?view=rev&rev=65967
Log:
oops, use #ifdef instead of #if
Modified:
branches/1.4/channels/chan_gtalk.c
Modified: branches/1.4/channels/chan_gtalk.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_gtalk.c?view=diff&rev=65967&r1=65966&r2=65967
==============================================================================
--- branches/1.4/channels/chan_gtalk.c (original)
+++ branches/1.4/channels/chan_gtalk.c Thu May 24 13:28:48 2007
@@ -49,7 +49,7 @@
#include <iksemel.h>
#include <pthread.h>
-#if HAVE_GNUTLS
+#ifdef HAVE_GNUTLS
#include <gcrypt.h>
GCRY_THREAD_OPTION_PTHREAD_IMPL;
#endif /* HAVE_GNUTLS */
@@ -1811,7 +1811,7 @@
/*! \brief Load module into PBX, register channel */
static int load_module(void)
{
-#if HAVE_GNUTLS
+#ifdef HAVE_GNUTLS
gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
#endif /* HAVE_GNUTLS */
More information about the svn-commits
mailing list