Author: mturk Date: Thu Oct 2 02:20:51 2008 New Revision: 701053 URL: http://svn.apache.org/viewvc?rev=701053&view=rev Log: Properly cast the format string
Modified: tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Modified: tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c?rev=701053&r1=701052&r2=701053&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c (original) +++ tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Thu Oct 2 02:20:51 2008 @@ -1881,7 +1881,7 @@ char error_page_url[INTERNET_MAX_URL_LENGTH] = ""; int len_of_error_page; StringCbPrintf(error_page_url, INTERNET_MAX_URL_LENGTH, - error_page, is_error); + (LPCSTR)error_page, is_error); len_of_error_page = (int)strlen(error_page_url); if (!lpEcb->ServerSupportFunction(lpEcb->ConnID, HSE_REQ_SEND_URL_REDIRECT_RESP, --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]