You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by su...@apache.org on 2008/06/09 06:31:14 UTC

svn commit: r664622 - /webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_isapi_plugin.c

Author: supun
Date: Sun Jun  8 21:31:13 2008
New Revision: 664622

URL: http://svn.apache.org/viewvc?rev=664622&view=rev
Log:
fixed the build break for IIS module

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_isapi_plugin.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_isapi_plugin.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_isapi_plugin.c?rev=664622&r1=664621&r2=664622&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_isapi_plugin.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_isapi_plugin.c Sun Jun  8 21:31:13 2008
@@ -373,11 +373,11 @@
 	}
 	if (get_registry_config_parameter(hkey, AXIS2_IIS_SERVICE_URL_PREFIX, tmpbuf, sizeof(tmpbuf)))
 	{
-		axis2_request_url_prefix = strdup(tmpbuf); 
+		axis2_request_url_prefix = _strdup(tmpbuf); 
 	}
 	if (get_registry_config_parameter(hkey, AXIS2_IIS_AXIS2_LOCATION, tmpbuf, sizeof(tmpbuf)))
 	{
-		axis2_location = strdup(tmpbuf); 
+		axis2_location = _strdup(tmpbuf); 
 	}
     RegCloseKey(hkey);
     return ok;