andya 2004/03/29 06:13:36 Modified: jk/native2/server/dsapi jk_dsapi_plugin.c Log: Fixed silly S&R related typo. Revision Changes Path 1.8 +3 -3 jakarta-tomcat-connectors/jk/native2/server/dsapi/jk_dsapi_plugin.c Index: jk_dsapi_plugin.c =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/server/dsapi/jk_dsapi_plugin.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- jk_dsapi_plugin.c 26 Mar 2004 13:52:39 -0000 1.7 +++ jk_dsapi_plugin.c 29 Mar 2004 14:13:36 -0000 1.8 @@ -516,7 +516,7 @@ LONG rc; char *val; - rc = RegQueryValueEx(hkey, key, (LPunsigned int) 0, &type, NULL, &sz); + rc = RegQueryValueEx(hkey, key, (unsigned int) 0, &type, NULL, &sz); if (rc != ERROR_SUCCESS || type != REG_SZ) { return NULL; } @@ -525,7 +525,7 @@ return NULL; } - rc = RegQueryValueEx(hkey, key, (LPunsigned int) 0, &type, val, &sz); + rc = RegQueryValueEx(hkey, key, (unsigned int) 0, &type, val, &sz); if (rc == ERROR_SUCCESS) { return makeAbsolutePath(env, base, val); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]