Commit:    623386d79988d1aeea941bb463ece2c27f9ed5d0
Author:    Felipe Pena <felipe...@gmail.com>         Tue, 25 Jun 2013 21:53:20 
-0300
Parents:   b68c49617517d26abca3ec971a418e67f595010f
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=623386d79988d1aeea941bb463ece2c27f9ed5d0

Log:
- Fixed typo on condition

Changed paths:
  M  ext/curl/interface.c


Diff:
diff --git a/ext/curl/interface.c b/ext/curl/interface.c
index 2d54140..4b6e5e2 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


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to