Commit e0f3979a authored by Jeff Trawick's avatar Jeff Trawick
Browse files

in rfc1413_query():

  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
parent 6bcac12f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ static apr_status_t rfc1413_query(apr_socket_t *sock, conn_rec *conn,

    /* 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);