diff options
author | Felipe Pena <felipensp@gmail.com> | 2013-06-25 21:53:20 -0300 |
---|---|---|
committer | Felipe Pena <felipensp@gmail.com> | 2013-06-25 21:53:20 -0300 |
commit | 623386d79988d1aeea941bb463ece2c27f9ed5d0 (patch) | |
tree | f174ed2aa51c737b7c762c5f7c285a17c1edf3a2 /ext/curl/interface.c | |
parent | b68c49617517d26abca3ec971a418e67f595010f (diff) | |
download | php-git-623386d79988d1aeea941bb463ece2c27f9ed5d0.tar.gz |
- Fixed typo on condition
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 2d54140317..4b6e5e27dc 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -958,7 +958,7 @@ PHP_MINIT_FUNCTION(curl) REGISTER_CURL_CONSTANT(CURLFTPMETHOD_SINGLECWD); #endif -#if LIBCURL_VERSION_NUM >- 0x070f04 /* Available since 7.15.4 */ +#if LIBCURL_VERSION_NUM >= 0x070f04 /* Available since 7.15.4 */ REGISTER_CURL_CONSTANT(CURLINFO_FTP_ENTRY_PATH); #endif |