aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_gtalk.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 18:28:48 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 18:28:48 +0000
commit7cbd9a7da163e182913e210a5380c6d5e22b7436 (patch)
treed65e74248bb7b24cac53a5d8ec24fd0df70f31b1 /channels/chan_gtalk.c
parentfe2bd486161928c7f7a58e0f9af744f8f6d316dd (diff)
oops, use #ifdef instead of #if
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@65967 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_gtalk.c')
-rw-r--r--channels/chan_gtalk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_gtalk.c b/channels/chan_gtalk.c
index 39e4c7d9e..02838a044 100644
--- a/channels/chan_gtalk.c
+++ b/channels/chan_gtalk.c
@@ -49,7 +49,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#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 @@ static int gtalk_load_config(void)
/*! \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 */