From: Ilia Alshanetsky Date: Thu, 5 Jan 2006 18:03:18 +0000 (+0000) Subject: Fixed bug #35908 (curl extension uses undefined GCRY_THREAD_OPTIONS_USER). X-Git-Tag: php-4.4.2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=855359278e317bad5d4b35ff7e53e7e463b1ef27;p=php Fixed bug #35908 (curl extension uses undefined GCRY_THREAD_OPTIONS_USER). --- diff --git a/ext/curl/curl.c b/ext/curl/curl.c index ce7523dd6c..0156b22bb2 100644 --- a/ext/curl/curl.c +++ b/ext/curl/curl.c @@ -1517,7 +1517,7 @@ static int php_curl_ssl_mutex_unlock(void **m) } static struct gcry_thread_cbs php_curl_gnutls_tsl = { - GCRY_THREAD_OPTIONS_USER, + GCRY_THREAD_OPTION_USER, NULL, php_curl_ssl_mutex_create, php_curl_ssl_mutex_destroy,