diff options
author | nandika | 2012-12-26 15:19:36 +0000 |
---|---|---|
committer | nandika | 2012-12-26 15:19:36 +0000 |
commit | 2b169c74ad09bdf45f2f342e83631d9d740267a7 (patch) | |
tree | 2443336927e51497a9bb3c8a4e6623d4e7478bd2 /src/core/transport/http | |
parent | e253428ad226588fe86196e3040c8a9ffde57bb7 (diff) | |
download | axis2c-2b169c74ad09bdf45f2f342e83631d9d740267a7.tar.gz axis2c-2b169c74ad09bdf45f2f342e83631d9d740267a7.tar.bz2 |
fixing issue AXIS2C-1518, content type setting corrected
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1425947 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/core/transport/http')
-rw-r--r-- | src/core/transport/http/server/IIS/axis2_iis_out_transport_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/http/server/IIS/axis2_iis_out_transport_info.c b/src/core/transport/http/server/IIS/axis2_iis_out_transport_info.c index fb7693b..4ad0069 100644 --- a/src/core/transport/http/server/IIS/axis2_iis_out_transport_info.c +++ b/src/core/transport/http/server/IIS/axis2_iis_out_transport_info.c @@ -82,7 +82,7 @@ axis2_iis_out_transport_info_set_content_type( info_impl->content_type[0] = '\0'; if(info_impl->encoding) { - sprintf(info_impl->content_type, "%s%s%s", content_type, ";charser:", info_impl->encoding); + sprintf(info_impl->content_type, "%s%s%s", content_type, ";charset:", info_impl->encoding); } else { |