See subject line and log message within patch.
- Julian
Remove a spurious carriage return from the middle of a line.
No functional change.
* apr/network_io/unix/sendrecv.c
(apr_socket_sendfile): Remove a spurious carriage return.
Index: apr/network_io/unix/sendrecv.c
===================================================================
--- apr/network_io/unix/sendrecv.c (revision 65585)
+++ apr/network_io/unix/sendrecv.c (working copy)
@@ -316,7 +316,7 @@ apr_status_t apr_socket_sendfile(apr_soc
*len); /* number of bytes to send */
} while (rv == -1 && errno == EINTR);
- if ((rv == -1) &&
(errno == EAGAIN || errno == EWOULDBLOCK)
+ if ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK)
&& (sock->timeout > 0)) {
do_select:
arv = apr_wait_for_io_or_timeout(NULL, sock, 0);