slive       00/11/05 12:27:58

  Modified:    htdocs/manual/misc perf-tuning.html
  Log:
  Fixed a couple leftover &s.
  Submitted by: Chris Pepper <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.23      +2 -2      httpd-docs-2.0/htdocs/manual/misc/perf-tuning.html
  
  Index: perf-tuning.html
  ===================================================================
  RCS file: /home/cvs/httpd-docs-2.0/htdocs/manual/misc/perf-tuning.html,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- perf-tuning.html  2000/11/05 19:52:03     1.22
  +++ perf-tuning.html  2000/11/05 20:27:58     1.23
  @@ -281,13 +281,13 @@
   
            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;
                }
  
  
  

Reply via email to