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/ftp.h | |
parent | ddddf398afaf5fc9f88126403a92342e03c33f59 (diff) | |
download | php-git-e8b50bc834a149520060bce53ed11cb886ab0eb1.tar.gz |
Fix ZTS build.
Diffstat (limited to 'ext/ftp/ftp.h')
-rw-r--r-- | ext/ftp/ftp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ftp/ftp.h b/ext/ftp/ftp.h index a770dfc4e2..40cab76a1e 100644 --- a/ext/ftp/ftp.h +++ b/ext/ftp/ftp.h @@ -81,7 +81,7 @@ typedef struct ftpbuf /* open a FTP connection, returns ftpbuf (NULL on error) * port is the ftp port in network byte order, or 0 for the default */ -ftpbuf_t* ftp_open(const char *host, short port, long timeout_sec); +ftpbuf_t* ftp_open(const char *host, short port, long timeout_sec TSRMLS_DC); /* quits from the ftp session (it still needs to be closed) * return true on success, false on error |