svn commit: r1934919 - in httpd/httpd/branches/2.4.x: . modules/ssl
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <178048347888.2308339.15869212310068667960@svn03-he-fi> |
Author: jorton
Date: Wed Jun 3 10:44:38 2026
New Revision: 1934919
Log:
Merge r1934918 from trunk:
* modules/ssl/ssl_util_ocsp.c (send_request): Increase wbuf with the
len read by apr_socket_send
Submitted by: gbechis
Github: closes #603
Reviewed by: covener, jorton, jfclere
Modified:
httpd/httpd/branches/2.4.x/ (props changed)
httpd/httpd/branches/2.4.x/modules/ssl/ssl_util_ocsp.c
Modified: httpd/httpd/branches/2.4.x/modules/ssl/ssl_util_ocsp.c
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/ssl/ssl_util_ocsp.c Wed Jun 3 10:43:09 2026 (r1934918)
+++ httpd/httpd/branches/2.4.x/modules/ssl/ssl_util_ocsp.c Wed Jun 3 10:44:38 2026 (r1934919)
@@ -133,7 +133,7 @@ static apr_socket_t *send_request(BIO *r
apr_size_t wlen = remain;
rv = apr_socket_send(sd, wbuf, &wlen);
- wbuf += remain;
+ wbuf += wlen;
remain -= wlen;
} while (rv == APR_SUCCESS && remain > 0);