diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-02-04 22:16:50 -0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-02-06 16:59:00 +0100 |
commit | 2d48d734a20192a10792669baaa88dbe86f2b3a6 (patch) | |
tree | 7fc432c83d72e936dfa645611049d9d95a77d47f /ext/ftp | |
parent | 91b09c7aa6b88b276a02ee0f00277917efc54570 (diff) | |
download | php-git-2d48d734a20192a10792669baaa88dbe86f2b3a6.tar.gz |
Fix some misspellings
Diffstat (limited to 'ext/ftp')
-rw-r--r-- | ext/ftp/ftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c index 32d7338333..4339c9d18f 100644 --- a/ext/ftp/ftp.c +++ b/ext/ftp/ftp.c @@ -1803,7 +1803,7 @@ data_accepted: if (ftp->use_ssl && ftp->use_ssl_for_data) { ctx = SSL_get_SSL_CTX(ftp->ssl_handle); if (ctx == NULL) { - php_error_docref(NULL, E_WARNING, "data_accept: failed to retreive the existing SSL context"); + php_error_docref(NULL, E_WARNING, "data_accept: failed to retrieve the existing SSL context"); return 0; } @@ -1822,7 +1822,7 @@ data_accepted: /* get the session from the control connection so we can re-use it */ session = SSL_get_session(ftp->ssl_handle); if (session == NULL) { - php_error_docref(NULL, E_WARNING, "data_accept: failed to retreive the existing SSL session"); + php_error_docref(NULL, E_WARNING, "data_accept: failed to retrieve the existing SSL session"); SSL_free(data->ssl_handle); return 0; } |