summaryrefslogtreecommitdiff
path: root/ext/ftp
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2002-03-16 01:28:57 +0000
committerWez Furlong <wez@php.net>2002-03-16 01:28:57 +0000
commit09213d7bf88d0f947d7e89fa1af91e43edd36bb7 (patch)
treeb000df5886d216533bf2a999197a3d71670acbe7 /ext/ftp
parenta1667db82da02610d26d05278601a0d381ee4f6d (diff)
downloadphp-git-09213d7bf88d0f947d7e89fa1af91e43edd36bb7.tar.gz
change * formatting
Diffstat (limited to 'ext/ftp')
-rw-r--r--ext/ftp/ftp.c2
-rw-r--r--ext/ftp/ftp.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c
index 4121e8dbf3..c3a7818534 100644
--- a/ext/ftp/ftp.c
+++ b/ext/ftp/ftp.c
@@ -613,7 +613,7 @@ bail:
/* {{{ ftp_put
*/
int
-ftp_put(ftpbuf_t *ftp, const char *path, php_stream * instream, ftptype_t type)
+ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type)
{
databuf_t *data = NULL;
int size;
diff --git a/ext/ftp/ftp.h b/ext/ftp/ftp.h
index 38b75b1f73..b201045f9b 100644
--- a/ext/ftp/ftp.h
+++ b/ext/ftp/ftp.h
@@ -130,13 +130,13 @@ int ftp_pasv(ftpbuf_t *ftp, int pasv);
/* retrieves a file and saves its contents to outfp
* returns true on success, false on error
*/
-int ftp_get(ftpbuf_t *ftp, php_stream * outstream, const char *path,
+int ftp_get(ftpbuf_t *ftp, php_stream *outstream, const char *path,
ftptype_t type);
/* stores the data from a file, socket, or process as a file on the remote server
* returns true on success, false on error
*/
-int ftp_put(ftpbuf_t *ftp, const char *path, php_stream * instream, ftptype_t type);
+int ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type);
/* returns the size of the given file, or -1 on error */
int ftp_size(ftpbuf_t *ftp, const char *path);