diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-08-09 23:19:55 -0300 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-12 16:15:45 +0200 |
commit | 84b195d9fc5ba2b65ceb46d8ec3d4676bf51a538 (patch) | |
tree | 2c3100631a749d0ebc5515f06a950dae8c9d9b3b /ext/soap/php_http.c | |
parent | 9ea7d259effc81700e8b7f03f56c47c14201548e (diff) | |
download | php-git-84b195d9fc5ba2b65ceb46d8ec3d4676bf51a538.tar.gz |
Fix some misspellings
Diffstat (limited to 'ext/soap/php_http.c')
-rw-r--r-- | ext/soap/php_http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index fc068bf4d1..408afceef7 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -1447,7 +1447,7 @@ static zend_string* get_http_body(php_stream *stream, int close, char *headers) ch = php_stream_getc(stream); } if (ch != '\n') { - /* Somthing wrong in chunked encoding */ + /* Something wrong in chunked encoding */ if (http_buf) { zend_string_release_ex(http_buf, 0); } @@ -1455,7 +1455,7 @@ static zend_string* get_http_body(php_stream *stream, int close, char *headers) } } } else { - /* Somthing wrong in chunked encoding */ + /* Something wrong in chunked encoding */ if (http_buf) { zend_string_release_ex(http_buf, 0); } |