diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-15 11:27:29 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-17 14:52:46 +0100 |
commit | d1764ca33018f1f2e4a05926c879c67ad4aa8da5 (patch) | |
tree | 443cab099d2d5989a93a8102f599b51d36acc64e /ext/ftp | |
parent | 117b18d22d14fb6a597b3cd6d52e75cef2d088bb (diff) | |
download | php-git-d1764ca33018f1f2e4a05926c879c67ad4aa8da5.tar.gz |
Make error messages more consistent by fixing capitalization
Closes GH-5066 As a first step, let's capitalize their initial letter when it is applicable.
Diffstat (limited to 'ext/ftp')
-rw-r--r-- | ext/ftp/ftp.c | 4 | ||||
-rw-r--r-- | ext/ftp/php_ftp.c | 2 | ||||
-rw-r--r-- | ext/ftp/tests/005.phpt | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c index cb8161a456..71dc7f6691 100644 --- a/ext/ftp/ftp.c +++ b/ext/ftp/ftp.c @@ -272,7 +272,7 @@ ftp_login(ftpbuf_t *ftp, const char *user, const size_t user_len, const char *pa ctx = SSL_CTX_new(SSLv23_client_method()); if (ctx == NULL) { - php_error_docref(NULL, E_WARNING, "failed to create the SSL context"); + php_error_docref(NULL, E_WARNING, "Failed to create the SSL context"); return 0; } @@ -288,7 +288,7 @@ ftp_login(ftpbuf_t *ftp, const char *user, const size_t user_len, const char *pa SSL_CTX_free(ctx); if (ftp->ssl_handle == NULL) { - php_error_docref(NULL, E_WARNING, "failed to create the SSL handle"); + php_error_docref(NULL, E_WARNING, "Failed to create the SSL handle"); return 0; } diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index e135cec027..d196230a62 100644 --- a/ext/ftp/php_ftp.c +++ b/ext/ftp/php_ftp.c @@ -889,7 +889,7 @@ PHP_FUNCTION(ftp_nb_continue) } if (!ftp->nb) { - php_error_docref(NULL, E_WARNING, "no nbronous transfer to continue."); + php_error_docref(NULL, E_WARNING, "No nbronous transfer to continue."); RETURN_LONG(PHP_FTP_FAILED); } diff --git a/ext/ftp/tests/005.phpt b/ext/ftp/tests/005.phpt index bbc11e87ae..4b46321e26 100644 --- a/ext/ftp/tests/005.phpt +++ b/ext/ftp/tests/005.phpt @@ -66,7 +66,7 @@ int(-1) Warning: ftp_mkdir(): Command not implemented (7). in %s005.php on line 20 bool(false) -Warning: ftp_nb_continue(): no nbronous transfer to continue. in %s005.php on line 21 +Warning: ftp_nb_continue(): No nbronous transfer to continue. in %s005.php on line 21 int(0) Warning: ftp_nb_fget(): Mode must be FTP_ASCII or FTP_BINARY in %s005.php on line 22 |