use the buflen variable even on ASCII machines to get rid of a
warning from the SGI compiler as well as to make it go a wee
bit faster
PR: 6980
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88425
13f79535-47bb-0310-9956-
ffa450edef68
/* send query to server. Handle short write. */
i = 0;
- while (i < strlen(buffer)) {
+ while (i < buflen) {
apr_size_t j = strlen(buffer + i);
apr_status_t status;
status = apr_send(sock, buffer+i, &j);