]> granicus.if.org Git - apache/commitdiff
Fixed a couple leftover &s.
authorJoshua Slive <slive@apache.org>
Sun, 5 Nov 2000 20:27:58 +0000 (20:27 +0000)
committerJoshua Slive <slive@apache.org>
Sun, 5 Nov 2000 20:27:58 +0000 (20:27 +0000)
Submitted by: Chris Pepper <pepper@mail.reppep.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86842 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/misc/perf-tuning.html

index e7e1d43044eeaa64069b266e25507404c88b153a..0e2a6f8392955998230906003a40ee11e4cfcad9 100644 (file)
@@ -281,13 +281,13 @@ pedagogical purposes):
 
            FD_ZERO (&amp;accept_fds);
            for (i = first_socket; i &lt;= last_socket; ++i) {
-               FD_SET (i, &mp;accept_fds);
+               FD_SET (i, &amp;accept_fds);
            }
            rc = select (last_socket+1, &amp;accept_fds, NULL, NULL, NULL);
            if (rc &lt; 1) continue;
            new_connection = -1;
            for (i = first_socket; i &lt;= last_socket; ++i) {
-               if (FD_ISSET (i, &accept_fds)) {
+               if (FD_ISSET (i, &amp;accept_fds)) {
                    new_connection = accept (i, NULL, NULL);
                    if (new_connection != -1) break;
                }