summaryrefslogtreecommitdiff
path: root/sapi/apache2handler/sapi_apache2.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2004-12-16 12:36:49 +0000
committerfoobar <sniper@php.net>2004-12-16 12:36:49 +0000
commitefbaf4327a233b63582c52f46d4b24e539ffecc0 (patch)
treee5b50dbdbcbb883f76a8eaa2e895d65a76e9ab92 /sapi/apache2handler/sapi_apache2.c
parent39413a6022387dc55b43a66878d8390d608a1ec9 (diff)
downloadphp-git-efbaf4327a233b63582c52f46d4b24e539ffecc0.tar.gz
MFH: Fix typo (avaliable -> available). (bug #28725)
Diffstat (limited to 'sapi/apache2handler/sapi_apache2.c')
-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 62f476f35d..cc4390bf12 100644
--- a/sapi/apache2handler/sapi_apache2.c
+++ b/sapi/apache2handler/sapi_apache2.c
@@ -140,7 +140,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) {