From: Gonzalo A. <ga...@us...> - 2006-09-13 13:03:50
|
Update of /cvsroot/mod-c/mod_c/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv10773/src Modified Files: mod_c.c Log Message: * Handler names are now char arraya, so sizeof(handler_name) is the actual size of the name. Index: mod_c.c =================================================================== RCS file: /cvsroot/mod-c/mod_c/src/mod_c.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** mod_c.c 13 Sep 2006 12:43:45 -0000 1.20 --- mod_c.c 13 Sep 2006 13:03:45 -0000 1.21 *************** *** 32,41 **** * The name of the EHMTL file handler. */ ! static const char * ehtml_handler = "ehtml-bin"; /** * The name of the EHTML profile handler */ ! static const char * profile_handler = "ehtml-profile"; mod_c_config* c_sconfig(server_rec* s) --- 32,41 ---- * The name of the EHMTL file handler. */ ! static const char ehtml_handler[] = "ehtml-bin"; /** * The name of the EHTML profile handler */ ! static const char profile_handler[] = "ehtml-profile"; mod_c_config* c_sconfig(server_rec* s) |