diff options
author | nandika | 2011-06-08 09:49:34 +0000 |
---|---|---|
committer | nandika | 2011-06-08 09:49:34 +0000 |
commit | 8b1c8a730524fb1ca92d70d257eaaf84e4c01e5b (patch) | |
tree | 71e3ac99b762dbf5056990187ca14dad9145d72b | |
parent | e34c09beed87bf76745770b436b49e228409f4a6 (diff) | |
download | axis2c-8b1c8a730524fb1ca92d70d257eaaf84e4c01e5b.tar.gz axis2c-8b1c8a730524fb1ca92d70d257eaaf84e4c01e5b.tar.bz2 |
compilation error fixed
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1133316 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/core/transport/http/sender/ntlm/heimdal/heimdal_ntlm_wrapper.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/transport/http/sender/ntlm/heimdal/heimdal_ntlm_wrapper.c b/src/core/transport/http/sender/ntlm/heimdal/heimdal_ntlm_wrapper.c index bd5db24..e4c7000 100644 --- a/src/core/transport/http/sender/ntlm/heimdal/heimdal_ntlm_wrapper.c +++ b/src/core/transport/http/sender/ntlm/heimdal/heimdal_ntlm_wrapper.c @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "axis2_ntlm.h" +#include <axis2_ntlm.h> #include <axutil_utils_defines.h> #include <axutil_utils.h> #include <string.h> @@ -186,11 +186,8 @@ heimdal_ntlm_wrapper_create_type3_message( int ret; int len; - - AXIS2_ENV_CHECK(env, AXIS2_FAILURE); ntlm_impl = AXIS2_INTF_TO_IMPL(ntlm); - memset(&type2, 0, sizeof(type2)); |