summaryrefslogtreecommitdiff
path: root/ext/ftp/php_ftp.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-07-13 20:55:22 +0000
committerEgon Schmid <eschmid@php.net>2000-07-13 20:55:22 +0000
commit411280eb9d356501be188fc70f43c95a89c72da0 (patch)
tree32a8ecb2a5c6a1b4b849b7c445e5c4456830cd0b /ext/ftp/php_ftp.c
parent9936548993a8d3b458951efe9bcd7825cd59e998 (diff)
downloadphp-git-411280eb9d356501be188fc70f43c95a89c72da0.tar.gz
The description for protos need no period.
Diffstat (limited to 'ext/ftp/php_ftp.c')
-rw-r--r--ext/ftp/php_ftp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c
index 8a4da53991..f4e2cc7b64 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -169,7 +169,7 @@ PHP_FUNCTION(ftp_connect)
/* }}} */
/* {{{ proto int ftp_login(int stream, string username, string password)
- Logs into the FTP server. */
+ Logs into the FTP server */
PHP_FUNCTION(ftp_login)
{
pval *arg1, *arg2, *arg3;
@@ -201,7 +201,7 @@ PHP_FUNCTION(ftp_login)
/* }}} */
/* {{{ proto string ftp_pwd(int stream)
- Returns the present working directory. */
+ Returns the present working directory */
PHP_FUNCTION(ftp_pwd)
{
pval *arg1;
@@ -445,7 +445,7 @@ PHP_FUNCTION(ftp_systype)
/* }}} */
/* {{{ proto int ftp_fget(int stream, int fp, string remote_file, int mode)
- Retrieves a file from the FTP server and writes it to an open file. */
+ Retrieves a file from the FTP server and writes it to an open file */
PHP_FUNCTION(ftp_fget)
{
pval *arg1, *arg2, *arg3, *arg4;
@@ -484,7 +484,7 @@ PHP_FUNCTION(ftp_fget)
/* }}} */
/* {{{ proto int ftp_pasv(int stream, int pasv)
- Turns passive mode on or off. */
+ Turns passive mode on or off */
PHP_FUNCTION(ftp_pasv)
{
pval *arg1, *arg2;
@@ -510,7 +510,7 @@ PHP_FUNCTION(ftp_pasv)
/* }}} */
/* {{{ proto int ftp_get(int stream, string local_file, string remote_file, int mode)
- Retrieves a file from the FTP server and writes it to a local file. */
+ Retrieves a file from the FTP server and writes it to a local file */
PHP_FUNCTION(ftp_get)
{
pval *arg1, *arg2, *arg3, *arg4;
@@ -581,7 +581,7 @@ PHP_FUNCTION(ftp_get)
/* }}} */
/* {{{ proto int ftp_fput(int stream, string local_file, string remote_file, int mode)
- Stores a file from an open file to the FTP server. */
+ Stores a file from an open file to the FTP server */
PHP_FUNCTION(ftp_fput)
{
pval *arg1, *arg2, *arg3, *arg4;
@@ -662,7 +662,7 @@ PHP_FUNCTION(ftp_put)
/* }}} */
/* {{{ proto int ftp_size(int stream, string path)
- Returns the size of the file, or -1 on error. */
+ Returns the size of the file, or -1 on error */
PHP_FUNCTION(ftp_size)
{
pval *arg1, *arg2;