diff options
author | Zeev Suraski <zeev@php.net> | 2002-03-19 19:15:40 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2002-03-19 19:15:40 +0000 |
commit | dcb44bf51262ff3160a211b45aaf3510695dcee5 (patch) | |
tree | 9ca01b30f89a14ea13ab10d9c5aa7b33394d5142 /sapi/isapi/php4isapi.c | |
parent | a990c4da3e172dc800e64628d3d3948de72d020e (diff) | |
download | php-git-dcb44bf51262ff3160a211b45aaf3510695dcee5.tar.gz |
- Fix whitespace (guys, please try to stick with the php4 tree style as far
as indentation/newlines go, and also as far as using {} even on if's
that have single statements)
- Fix Windows build
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r-- | sapi/isapi/php4isapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 2d55d13c4e..9f30195345 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -207,7 +207,7 @@ static int sapi_isapi_ub_write(const char *str, uint str_length TSRMLS_DC) LPEXTENSION_CONTROL_BLOCK ecb; ecb = (LPEXTENSION_CONTROL_BLOCK) SG(server_context); - if (ecb->WriteClient(ecb->ConnID, (char *) str, &num_bytes, HSE_IO_SYNC ) == FALSE) { + if (ecb->WriteClient(ecb->ConnID, (char *) str, &num_bytes, HSE_IO_SYNC) == FALSE) { php_handle_aborted_connection(); } return num_bytes; |