summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-03-10 22:58:46 +0000
committerFelipe Pena <felipe@php.net>2010-03-10 22:58:46 +0000
commit51de55b6e6633661600c03b53b55fb361ba1b4d7 (patch)
tree0522fc0e1520cbe44a39f423f4776b1cf53f1dbf
parent12cbc66786e3791c9d7af514b78b2436038b6fd0 (diff)
downloadphp-git-51de55b6e6633661600c03b53b55fb361ba1b4d7.tar.gz
- Fixed bug #51257 (CURL_VERSION_LARGEFILE incorrectly used after libcurl version 7.10.1)
patch by: aron dot ujvari at microsec dot hu
-rw-r--r--ext/curl/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/interface.c b/ext/curl/interface.c
index 150a2c24ef..483a088f86 100644
--- a/ext/curl/interface.c
+++ b/ext/curl/interface.c
@@ -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 */