pier 01/07/15 01:44:11 Modified: webapp/include wa.h Log: Boolean is an enumeration now. Revision Changes Path 1.10 +5 -2 jakarta-tomcat-connectors/webapp/include/wa.h Index: wa.h =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/include/wa.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- wa.h 2001/06/07 09:40:27 1.9 +++ wa.h 2001/07/15 08:44:11 1.10 @@ -57,7 +57,7 @@ /** * @author Pier Fumagalli <mailto:[EMAIL PROTECTED]> - * @version $Id: wa.h,v 1.9 2001/06/07 09:40:27 jfclere Exp $ + * @version $Id: wa.h,v 1.10 2001/07/15 08:44:11 pier Exp $ */ #ifndef _WA_H_ #define _WA_H_ @@ -83,7 +83,10 @@ #include <apr_network_io.h> /* WebApp Library type definitions. */ -typedef int wa_boolean; +typedef enum { + wa_false, + wa_true, +} wa_boolean; typedef struct wa_chain wa_chain;