Suggested modifications for: htdocs/manual/misc/perf-tuning.html
  Log:
    Fixed a couple leftover &s.


                                                Chris Pepper

Index: perf-tuning.html
===================================================================
RCS file: /home/cvspublic/httpd-docs-1.3/htdocs/manual/misc/perf-tuning.html,v
retrieving revision 1.22
diff -u -d -b -w -r1.22 perf-tuning.html
--- perf-tuning.html    2000/11/05 19:48:30     1.22
+++ perf-tuning.html    2000/11/05 20:10:13
@@ -281,13 +281,13 @@
 
            FD_ZERO (&accept_fds);
            for (i = first_socket; i <= last_socket; ++i) {
-               FD_SET (i, ∓accept_fds);
+               FD_SET (i, &accept_fds);
            }
            rc = select (last_socket+1, &accept_fds, NULL, NULL, NULL);
            if (rc < 1) continue;
            new_connection = -1;
            for (i = first_socket; i <= last_socket; ++i) {
-               if (FD_ISSET (i, &accept_fds)) {
+               if (FD_ISSET (i, &accept_fds)) {
                    new_connection = accept (i, NULL, NULL);
                    if (new_connection != -1) break;
                }

Reply via email to