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;
            }
  
  
  

Reply via email to