dougm       98/05/07 15:42:06

  Modified:    src/main http_core.c
  Log:
  `bool' is #define'd as a type here, can't build with that clash,
  so change to `flag'
  
  Revision  Changes    Path
  1.195     +2 -2      apache-1.3/src/main/http_core.c
  
  Index: http_core.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_core.c,v
  retrieving revision 1.194
  retrieving revision 1.195
  diff -u -r1.194 -r1.195
  --- http_core.c       1998/05/07 12:24:25     1.194
  +++ http_core.c       1998/05/07 22:42:05     1.195
  @@ -1892,9 +1892,9 @@
    */
   
   static const char *enable_platform_announcement(cmd_parms *cmd, void 
*mconfig,
  -                                             int bool)
  +                                             int flag)
   {
  -    ap_note_platform = bool;
  +    ap_note_platform = flag;
       return NULL;
   }
   
  
  
  

Reply via email to