https://issues.apache.org/bugzilla/show_bug.cgi?id=42190
--- Comment #8 from rahul <[EMAIL PROTECTED]> 2008-06-04 03:11:21 PST ---
(In reply to comment #7)
Are you refering to core.c:default_handler ? It seems to do this,
---------------------------------
status = ap_pass_brigade(r->output_filters, bb);
if (status == APR_SUCCESS
|| r->status != HTTP_OK
|| c->aborted) {
return OK;
}
else {
/* no way to know what type of error occurred */
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, r,
"default_handler: ap_pass_brigade returned %i",
status);
return HTTP_INTERNAL_SERVER_ERROR;
}
---------------------------------
is this the same function? (i.e I need to check for r->status and c->aborted ?)
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]