summaryrefslogtreecommitdiff
path: root/sapi/apache2handler
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2004-12-16 12:34:32 +0000
committerfoobar <sniper@php.net>2004-12-16 12:34:32 +0000
commitce742b08b0386ee5d44fdb6b1b182c517f844c1c (patch)
tree8db31175ac136db5fbbb6e0c9cac17d7a5f62386 /sapi/apache2handler
parenteb0c45d57215646e390bdcd757e750a07bb0a48e (diff)
downloadphp-git-ce742b08b0386ee5d44fdb6b1b182c517f844c1c.tar.gz
- Fix typo (avaliable -> available). (bug #28725)
Diffstat (limited to 'sapi/apache2handler')
-rw-r--r--sapi/apache2handler/sapi_apache2.c2
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) {