keith 01/10/01 13:08:14 Modified: src/doc AJPv13.html src/native/mod_jk/common jk_ajp13.c Log: Toss the CRs Revision Changes Path 1.5 +5 -5 jakarta-tomcat/src/doc/AJPv13.html Index: AJPv13.html =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/doc/AJPv13.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- AJPv13.html 2001/10/01 19:58:08 1.4 +++ AJPv13.html 2001/10/01 20:08:14 1.5 @@ -356,11 +356,11 @@ MOVE 12 LOCK 13 UNLOCK 14 -ACL 15 -REPORT 16 -VERSION-CONTROL 17 -CHECKIN 18 -CHECKOUT 19 +ACL 15 +REPORT 16 +VERSION-CONTROL 17 +CHECKIN 18 +CHECKOUT 19 UNCHECKOUT 20 </PRE> <P> 1.8 +16 -16 jakarta-tomcat/src/native/mod_jk/common/jk_ajp13.c Index: jk_ajp13.c =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/native/mod_jk/common/jk_ajp13.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- jk_ajp13.c 2001/10/01 19:58:08 1.7 +++ jk_ajp13.c 2001/10/01 20:08:14 1.8 @@ -99,10 +99,10 @@ * | "LOCK" * | "UNLOCK" * | "ACL" - * | "REPORT" - * | "VERSION-CONTROL" - * | "CHECKIN" - * | "CHECKOUT" + * | "REPORT" + * | "VERSION-CONTROL" + * | "CHECKIN" + * | "CHECKOUT" * | "UNCHECKOUT" * */ @@ -121,10 +121,10 @@ #define SC_M_LOCK (unsigned char)13 #define SC_M_UNLOCK (unsigned char)14 #define SC_M_ACL (unsigned char)15 -#define SC_M_REPORT (unsigned char)16 -#define SC_M_VERSION_CONTROL (unsigned char)17 -#define SC_M_CHECKIN (unsigned char)18 -#define SC_M_CHECKOUT (unsigned char)19 +#define SC_M_REPORT (unsigned char)16 +#define SC_M_VERSION_CONTROL (unsigned char)17 +#define SC_M_CHECKIN (unsigned char)18 +#define SC_M_CHECKOUT (unsigned char)19 #define SC_M_UNCHECKOUT (unsigned char)20 @@ -254,14 +254,14 @@ } else if(0 == strcmp(method, "ACL")) { *sc = SC_M_ACL; } else if(0 == strcmp(method, "REPORT")) { - *sc = SC_M_REPORT; - } else if(0 == strcmp(method, "VERSION-CONTROL")) { - *sc = SC_M_VERSION_CONTROL; - } else if(0 == strcmp(method, "CHECKIN")) { - *sc = SC_M_CHECKIN; - } else if(0 == strcmp(method, "CHECKOUT")) { - *sc = SC_M_CHECKOUT; - } else if(0 == strcmp(method, "UNCHECKOUT")) { + *sc = SC_M_REPORT; + } else if(0 == strcmp(method, "VERSION-CONTROL")) { + *sc = SC_M_VERSION_CONTROL; + } else if(0 == strcmp(method, "CHECKIN")) { + *sc = SC_M_CHECKIN; + } else if(0 == strcmp(method, "CHECKOUT")) { + *sc = SC_M_CHECKOUT; + } else if(0 == strcmp(method, "UNCHECKOUT")) { *sc = SC_M_UNCHECKOUT; } else { rc = JK_FALSE;