diff options
author | Sterling Hughes <sterling@php.net> | 2001-08-24 01:12:37 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-08-24 01:12:37 +0000 |
commit | dd094d1866b7cd3c813d8420b0787750c98c1947 (patch) | |
tree | 81bf5e373305ad50bf41ebecc7b531ffe946edfb /ext/curl/curl.c | |
parent | ca5eb3460810c84f74779a04f34ce893e5ee370d (diff) | |
download | php-git-dd094d1866b7cd3c813d8420b0787750c98c1947.tar.gz |
noet
Diffstat (limited to 'ext/curl/curl.c')
-rw-r--r-- | ext/curl/curl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/curl/curl.c b/ext/curl/curl.c index 6e97eaafca..ed857d012e 100644 --- a/ext/curl/curl.c +++ b/ext/curl/curl.c @@ -669,7 +669,7 @@ PHP_FUNCTION(curl_setopt) case CURLOPT_STDERR: { FILE *fp; ZEND_FETCH_RESOURCE(fp, FILE *, zvalue, -1, "File-Handle", php_file_le_fopen()); - + error = CURLE_OK; switch (option) { case CURLOPT_FILE: @@ -730,7 +730,7 @@ PHP_FUNCTION(curl_setopt) HashTable *postfields; struct HttpPost *first = NULL; struct HttpPost *last = NULL; - + postfields = HASH_OF(*zvalue); if (! postfields) { php_error(E_WARNING, "Couldn't get HashTable in CURLOPT_POSTFIELDS"); @@ -1030,6 +1030,6 @@ static void _php_curl_close(zend_rsrc_list_entry *rsrc TSRMLS_DC) * tab-width: 4 * c-basic-offset: 4 * End: - * vim600: sw=4 ts=4 tw=78 fdm=marker - * vim<600: sw=4 ts=4 tw=78 + * vim600: noet sw=4 ts=4 tw=78 fdm=marker + * vim<600: noet sw=4 ts=4 tw=78 */ |