diff options
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); } |