costin 02/03/01 22:14:25 Modified: jk/native2/include jk_uriMap.h Log: Forgot to update the init() method here. init() is consistent in all objects - it takes no params (except the env and _this, of course ) Revision Changes Path 1.9 +4 -3 jakarta-tomcat-connectors/jk/native2/include/jk_uriMap.h Index: jk_uriMap.h =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/include/jk_uriMap.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- jk_uriMap.h 28 Feb 2002 22:08:21 -0000 1.8 +++ jk_uriMap.h 2 Mar 2002 06:14:25 -0000 1.9 @@ -106,12 +106,13 @@ /* ---------- Methods ---------- */ + int (*setProperty)( struct jk_env *env, jk_uriMap_t *_this, + char *name, char *value ); + /** Initialize the map. This should be called after all workers were added. It'll check if mappings have valid workers. */ - int (*init)( struct jk_env *env, jk_uriMap_t *_this, - struct jk_workerEnv *workerEnv, - struct jk_map *init_data ); + int (*init)( struct jk_env *env, jk_uriMap_t *_this); void (*destroy)( struct jk_env *env, jk_uriMap_t *_this );
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>