1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Clean up some emits

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89832 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2001-07-31 16:41:13 +00:00
parent 4cd12a47eb
commit fe6a92cae1

View File

@@ -280,10 +280,9 @@ eMode = AP_MODE_BLOCKING;
return APR_SUCCESS;
}
assert(len > 0);
n = BIO_write (pRec->pbioRead, data, len);
assert(n == len);
n = BIO_write (pRec->pbioRead, data, len);
assert(n >= 0 && (apr_size_t)n == len);
ssl_hook_process_connection (pRec);