diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2002-08-25 22:17:56 +0000 | 
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2002-08-25 22:17:56 +0000 | 
| commit | e8b50bc834a149520060bce53ed11cb886ab0eb1 (patch) | |
| tree | dc2d555c93f79afc1ee26ba518ea184e3bbe72f4 /ext/ftp/php_ftp.c | |
| parent | ddddf398afaf5fc9f88126403a92342e03c33f59 (diff) | |
| download | php-git-e8b50bc834a149520060bce53ed11cb886ab0eb1.tar.gz | |
Fix ZTS build.
Diffstat (limited to 'ext/ftp/php_ftp.c')
| -rw-r--r-- | ext/ftp/php_ftp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index a279ed81fc..5aeaa9cca5 100644 --- a/ext/ftp/php_ftp.c +++ b/ext/ftp/php_ftp.c @@ -145,7 +145,7 @@ PHP_FUNCTION(ftp_connect)  	}  	/* connect */ -	ftp = ftp_open(host, (short)port, timeout_sec); +	ftp = ftp_open(host, (short)port, timeout_sec TSRMLS_CC);  	if (ftp == NULL) {  		RETURN_FALSE;  	}  | 
