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

Add lognos. [skip ci].

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1875879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joe Orton
2020-03-30 13:00:12 +00:00
parent 21530e63e2
commit 005c3eeb61
2 changed files with 3 additions and 3 deletions

View File

@@ -1744,7 +1744,7 @@ static apr_status_t ssl_io_filter_coalesce(ap_filter_t *f,
rv = apr_bucket_read(e, &discard, &ignore, APR_NONBLOCK_READ);
if (rv != APR_SUCCESS && !APR_STATUS_IS_EAGAIN(rv)) {
ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, f->c, APLOGNO()
ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, f->c, APLOGNO(10232)
"coalesce failed to read from data bucket");
}
}
@@ -1761,7 +1761,7 @@ static apr_status_t ssl_io_filter_coalesce(ap_filter_t *f,
e = APR_BUCKET_NEXT(e);
}
else if (rv != APR_ENOTIMPL) {
ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, f->c, APLOGNO()
ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, f->c, APLOGNO(10233)
"coalesce: failed to split data bucket");
return AP_FILTER_ERROR;
}