slive 00/11/05 12:27:09
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-1.3/htdocs/manual/misc/perf-tuning.html
Index: perf-tuning.html
===================================================================
RCS file: /home/cvs/httpd-docs-1.3/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:48:30 1.22
+++ perf-tuning.html 2000/11/05 20:27:08 1.23
@@ -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;
}