From: Kevin P. Fleming Date: Thu, 24 May 2007 18:28:48 +0000 (+0000) Subject: oops, use #ifdef instead of #if X-Git-Tag: 1.4.5~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b14e93d004f9c1f1cae63f53900491ea877372a;p=thirdparty%2Fasterisk.git oops, use #ifdef instead of #if git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@65967 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_gtalk.c b/channels/chan_gtalk.c index 39e4c7d9ee..02838a0445 100644 --- a/channels/chan_gtalk.c +++ b/channels/chan_gtalk.c @@ -49,7 +49,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include #include -#if HAVE_GNUTLS +#ifdef HAVE_GNUTLS #include 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 */