You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by be...@hyperreal.org on 1998/04/12 21:02:07 UTC

cvs commit: apache-1.3/src/os/win32 readdir.h

ben         98/04/12 12:02:07

  Modified:    src/main gen_test_char.c
               src/modules/proxy ApacheModuleProxy.dsp
               src/os/win32 readdir.h
  Log:
  Fix warnings.
  
  Revision  Changes    Path
  1.3       +2 -1      apache-1.3/src/main/gen_test_char.c
  
  Index: gen_test_char.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/gen_test_char.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- gen_test_char.c	1998/03/27 10:06:49	1.2
  +++ gen_test_char.c	1998/04/12 19:02:03	1.3
  @@ -57,5 +57,6 @@
   
       }
       printf("\n};\n");
  -    exit(0);
  +
  +    return 0;
   }
  
  
  
  1.9       +1 -1      apache-1.3/src/modules/proxy/ApacheModuleProxy.dsp
  
  Index: ApacheModuleProxy.dsp
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/ApacheModuleProxy.dsp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ApacheModuleProxy.dsp	1998/04/06 05:21:42	1.8
  +++ ApacheModuleProxy.dsp	1998/04/12 19:02:05	1.9
  @@ -71,7 +71,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
  -# ADD CPP /nologo /MDd /W4 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /YX /FD /c
  +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /YX /FD /c
   # ADD BASE MTL /nologo /D "_DEBUG" /win32
   # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD BASE RSC /l 0x809 /d "_DEBUG"
  
  
  
  1.4       +3 -1      apache-1.3/src/os/win32/readdir.h
  
  Index: readdir.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/os/win32/readdir.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- readdir.h	1997/07/15 22:36:58	1.3
  +++ readdir.h	1998/04/12 19:02:06	1.4
  @@ -8,7 +8,9 @@
   #include <stdlib.h>
   #include <sys/types.h>
   
  -#define API_EXPORT(type)    __declspec(dllexport) type __stdcall
  +#ifndef API_EXPORT
  +# define API_EXPORT(type)    __declspec(dllexport) type __stdcall
  +#endif
   
   /* struct dirent - same as Unix */
   struct dirent {