Received: (from majordom@localhost) by hyperreal.org (8.8.5/8.8.5) id JAA20432; Sun, 24 Aug 1997 09:12:32 -0700 (PDT) Received: (from ben@localhost) by hyperreal.org (8.8.5/8.8.5) id JAA20427 for apache-cvs; Sun, 24 Aug 1997 09:12:30 -0700 (PDT) Date: Sun, 24 Aug 1997 09:12:30 -0700 (PDT) From: Ben Laurie Message-Id: <199708241612.JAA20427@hyperreal.org> To: apache-cvs@hyperreal.org Subject: cvs commit: apachen/src/main http_main.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org ben 97/08/24 09:12:29 Modified: src Apache.dsp src/main http_main.c Log: Fix Listen on Win32 (and no, I don't know what the change to the .DSP means, or where it came from). Revision Changes Path 1.5 +1 -0 apachen/src/Apache.dsp Index: Apache.dsp =================================================================== RCS file: /export/home/cvs/apachen/src/Apache.dsp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Apache.dsp 1997/08/23 04:10:08 1.4 +++ Apache.dsp 1997/08/24 16:12:26 1.5 @@ -62,6 +62,7 @@ # PROP Use_Debug_Libraries 1 # PROP Output_Dir ".\ApacheD" # PROP Intermediate_Dir ".\ApacheD" +# PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /FD /c 1.207 +1 -1 apachen/src/main/http_main.c Index: http_main.c =================================================================== RCS file: /export/home/cvs/apachen/src/main/http_main.c,v retrieving revision 1.206 retrieving revision 1.207 diff -u -r1.206 -r1.207 --- http_main.c 1997/08/24 02:51:36 1.206 +++ http_main.c 1997/08/24 16:12:28 1.207 @@ -3860,7 +3860,7 @@ { listen_rec *lr; - lr = find_ready_listener (&listenfds); + lr = find_ready_listener (&main_fds); if (lr != NULL) { sd = lr->fd; }