]> granicus.if.org Git - php/commitdiff
- Fixed bug #51257 (CURL_VERSION_LARGEFILE incorrectly used after libcurl version...
authorFelipe Pena <felipe@php.net>
Wed, 10 Mar 2010 22:58:46 +0000 (22:58 +0000)
committerFelipe Pena <felipe@php.net>
Wed, 10 Mar 2010 22:58:46 +0000 (22:58 +0000)
  patch by: aron dot ujvari at microsec dot hu

NEWS
ext/curl/interface.c

diff --git a/NEWS b/NEWS
index 486e78a7694245c8d8e4a425462df2cf92633a6b..aa09ad3d00ebef722bc40ba0ff336cced7b4ea9f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,8 @@ PHP                                                                        NEWS
 - Added stream filter support to mcrypt extension (ported from 
   mcrypt_filter). (Stas)
 
+- Fixed bug #51257 (CURL_VERSION_LARGEFILE incorrectly used after libcurl
+  version 7.10.1). (aron dot ujvari at microsec dot hu)
 - Fixed bug #51242 (Empty mysql.default_port does not default to 3306 anymore,
   but 0). (Adam)
 - Fixed bug #51237 (milter SAPI crash on startup). (igmar at palsenberg dot com)
index 5956b00fbeba00035c90852828100026dbc4e38c..dcfa865f1d9f0171b5f00b926b7e001a2660838b 100644 (file)
@@ -370,7 +370,7 @@ PHP_MINFO_FUNCTION(curl)
 #ifdef CURL_VERSION_IPV6
                        {"IPv6", CURL_VERSION_IPV6},
 #endif
-#if LIBCURL_VERSION_NUM > 0x070a09 /* 7.10.1 */
+#if LIBCURL_VERSION_NUM > 0x070b00 /* 7.11.1 */
                        {"Largefile", CURL_VERSION_LARGEFILE},
 #endif
 #if LIBCURL_VERSION_NUM > 0x070a05 /* 7.10.6 */