From b00e9461fc83d2fe7a6f0798561bde85df209e71 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Sun, 5 Nov 2000 20:27:58 +0000 Subject: [PATCH] Fixed a couple leftover &s. Submitted by: Chris Pepper git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86842 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/perf-tuning.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/misc/perf-tuning.html b/docs/manual/misc/perf-tuning.html index e7e1d43044..0e2a6f8392 100644 --- a/docs/manual/misc/perf-tuning.html +++ b/docs/manual/misc/perf-tuning.html @@ -281,13 +281,13 @@ pedagogical purposes): 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; } -- 2.50.1