when bucket read from socket was successful,
but there was an error within the ssl runtime.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94327
13f79535-47bb-0310-9956-
ffa450edef68
char_buffer_write(&ctx->cbuf, buf, rc);
}
}
+ else if ((rc == -1) && (ctx->inbio.rc == APR_SUCCESS)) {
+ /*
+ * bucket read from socket was successful,
+ * but there was an error within the ssl runtime.
+ */
+ return APR_EGENERAL;
+ }
return ctx->inbio.rc;
}