summaryrefslogtreecommitdiff
path: root/ext/curl/interface.c
diff options
context:
space:
mode:
authorFelipe Pena <felipensp@gmail.com>2013-06-25 21:53:20 -0300
committerFelipe Pena <felipensp@gmail.com>2013-06-25 21:53:20 -0300
commit623386d79988d1aeea941bb463ece2c27f9ed5d0 (patch)
treef174ed2aa51c737b7c762c5f7c285a17c1edf3a2 /ext/curl/interface.c
parentb68c49617517d26abca3ec971a418e67f595010f (diff)
downloadphp-git-623386d79988d1aeea941bb463ece2c27f9ed5d0.tar.gz
- Fixed typo on condition
Diffstat (limited to 'ext/curl/interface.c')
-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 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