You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@locus.apache.org on 2000/08/08 21:53:28 UTC

cvs commit: apache-2.0/src/os/win32 mod_isapi.c

stoddard    00/08/08 12:53:27

  Modified:    src/os/win32 mod_isapi.c
  Log:
  Fix win32 compile break.
  
  Revision  Changes    Path
  1.18      +4 -1      apache-2.0/src/os/win32/mod_isapi.c
  
  Index: mod_isapi.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/win32/mod_isapi.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- mod_isapi.c	2000/08/06 06:07:53	1.17
  +++ mod_isapi.c	2000/08/08 19:53:27	1.18
  @@ -832,7 +832,9 @@
                   ap_rputs(data, r);
   
               return TRUE;
  -
  +#if 0
  +/* HSE_REQ_CLOSE_CONNACTION and HSE_REQ_IS_CONNECTED are not defined on
  + * my system. wgs */
           case HSE_REQ_CLOSE_CONNECTION:  /* Added after ISAPI 4.0 */
               SetLastError(ERROR_INVALID_PARAMETER);
               return FALSE;
  @@ -840,6 +842,7 @@
           case HSE_REQ_IS_CONNECTED:  /* Added after ISAPI 4.0 */
               /* Returns True if client is connected c.f. Q188346*/
               return TRUE;
  +#endif
   
        /* case HSE_REQ_EXTENSION_TRIGGER:  
         *     Added after ISAPI 4.0?