diff options
author | foobar <sniper@php.net> | 2004-12-16 12:34:32 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2004-12-16 12:34:32 +0000 |
commit | ce742b08b0386ee5d44fdb6b1b182c517f844c1c (patch) | |
tree | 8db31175ac136db5fbbb6e0c9cac17d7a5f62386 /sapi/apache2handler | |
parent | eb0c45d57215646e390bdcd757e750a07bb0a48e (diff) | |
download | php-git-ce742b08b0386ee5d44fdb6b1b182c517f844c1c.tar.gz |
- Fix typo (avaliable -> available). (bug #28725)
Diffstat (limited to 'sapi/apache2handler')
-rw-r--r-- | sapi/apache2handler/sapi_apache2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 87e0bf1997..7bb061f504 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -142,7 +142,7 @@ php_apache_sapi_read_post(char *buf, uint count_bytes TSRMLS_DC) /* * This loop is needed because ap_get_brigade() can return us partial data * which would cause premature termination of request read. Therefor we - * need to make sure that if data is avaliable we fill the buffer completely. + * need to make sure that if data is available we fill the buffer completely. */ while (ap_get_brigade(r->input_filters, brigade, AP_MODE_READBYTES, APR_BLOCK_READ, len) == APR_SUCCESS) { |