diff options
author | Felipe Pena <felipe@php.net> | 2010-03-10 22:58:46 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-03-10 22:58:46 +0000 |
commit | 78cf85ab4491ac7870df730a3c8de786e32886b3 (patch) | |
tree | e0bac71f9a930e54bea01606287b92f89e3c0855 /ext/curl/interface.c | |
parent | 09df605181fac9120bdb330c1bb76a2a6ea29fcb (diff) | |
download | php-git-78cf85ab4491ac7870df730a3c8de786e32886b3.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
Diffstat (limited to 'ext/curl/interface.c')
-rw-r--r-- | ext/curl/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/interface.c b/ext/curl/interface.c index 5956b00fbe..dcfa865f1d 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 */ |