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 na...@apache.org on 2006/04/18 10:54:05 UTC

svn commit: r394887 - in /webservices/axis2/trunk/c/modules/xml: om/ parser/libxml2/ soap/

Author: nandika
Date: Tue Apr 18 01:54:01 2006
New Revision: 394887

URL: http://svn.apache.org/viewcvs?rev=394887&view=rev
Log:
warnings removed

Modified:
    webservices/axis2/trunk/c/modules/xml/om/om_comment.c
    webservices/axis2/trunk/c/modules/xml/om/om_element.c
    webservices/axis2/trunk/c/modules/xml/om/om_node.c
    webservices/axis2/trunk/c/modules/xml/om/om_output.c
    webservices/axis2/trunk/c/modules/xml/om/om_processing_instruction.c
    webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c
    webservices/axis2/trunk/c/modules/xml/om/om_text.c
    webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c
    webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_writer_wrapper.c
    webservices/axis2/trunk/c/modules/xml/soap/soap11_builder_helper.c
    webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_body.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_code.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_detail.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_node.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_reason.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_role.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_sub_code.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_text.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_fault_value.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_header.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_header_block.c

Modified: webservices/axis2/trunk/c/modules/xml/om/om_comment.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_comment.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_comment.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_comment.c Tue Apr 18 01:54:01 2006
@@ -15,7 +15,7 @@
  */
 
 #include <axis2_om_comment.h>
-#include <axis2_om_node_internal.h>
+#include "axis2_om_node_internal.h"
 #include <axis2_string.h>
 
 axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/xml/om/om_element.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_element.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_element.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_element.c Tue Apr 18 01:54:01 2006
@@ -15,7 +15,7 @@
  */
 
 #include <axis2_om_element.h>
-#include <axis2_om_node_internal.h>
+#include "axis2_om_node_internal.h"
 #include <axis2_om_attribute.h>
 #include <axis2_om_namespace.h>
 #include <axis2_xml_writer.h>
@@ -653,7 +653,7 @@
             key = AXIS2_MALLOC((*env)->allocator, sizeof(char) *10);
             memset(key, 0, sizeof(char)*10);
             om_ele_impl->next_ns_prefix_number++;
-            sprintf(key, "axis2ns%", om_ele_impl->next_ns_prefix_number);
+            sprintf(key, "axis2ns%d", om_ele_impl->next_ns_prefix_number);
             axis2_hash_set (om_ele_impl->namespaces, key, 
                             AXIS2_HASH_KEY_STRING,  ns);
     }
@@ -1624,4 +1624,4 @@
         }
     }
     return NULL;
-}
\ No newline at end of file
+}

Modified: webservices/axis2/trunk/c/modules/xml/om/om_node.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_node.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_node.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_node.c Tue Apr 18 01:54:01 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-#include <axis2_om_node_internal.h>
+#include "axis2_om_node_internal.h"
 #include <axis2_om_element.h>
 #include <axis2_om_text.h>
 #include <axis2_om_comment.h>

Modified: webservices/axis2/trunk/c/modules/xml/om/om_output.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_output.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_output.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_output.c Tue Apr 18 01:54:01 2006
@@ -777,7 +777,7 @@
     
 }
 
-
+
 
 
 /*@TODO Following method method must be implemented*/

Modified: webservices/axis2/trunk/c/modules/xml/om/om_processing_instruction.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_processing_instruction.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_processing_instruction.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_processing_instruction.c Tue Apr 18 01:54:01 2006
@@ -16,7 +16,7 @@
 
 #include <axis2_om_processing_instruction.h>
 #include <axis2_string.h>
-#include <axis2_om_node_internal.h>
+#include "axis2_om_node_internal.h"
 
 axis2_status_t AXIS2_CALL
 axis2_om_processing_instruction_free (axis2_om_processing_instruction_t *om_pi,

Modified: webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c Tue Apr 18 01:54:01 2006
@@ -22,8 +22,8 @@
 #include <axis2_string.h>
 #include <axis2_xml_writer.h>
 #include <axis2_om_doctype.h>
-#include <axis2_om_node_internal.h>
-#include <axis2_om_stax_builder_internal.h>
+#include "axis2_om_node_internal.h"
+#include "axis2_om_stax_builder_internal.h"
 /**************************** function prototypes *****************************/
 
 axis2_om_node_t * AXIS2_CALL 

Modified: webservices/axis2/trunk/c/modules/xml/om/om_text.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_text.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_text.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_text.c Tue Apr 18 01:54:01 2006
@@ -17,7 +17,7 @@
 #include <axis2_om_text.h>
 #include <axis2_om_output.h>
 #include <axis2_string.h>
-#include <axis2_om_node_internal.h>
+#include "axis2_om_node_internal.h"
 #include <axis2_xml_writer.h>
 #include <axis2_om_output.h>
 #include <axis2_om_attribute.h>

Modified: webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c Tue Apr 18 01:54:01 2006
@@ -907,7 +907,7 @@
     axis2_libxml2_reader_wrapper_impl_t *parser_impl = NULL;
     AXIS2_ENV_CHECK(env, NULL);
     parser_impl = AXIS2_INTF_TO_IMPL(parser);
-    return xmlTextReaderNamespaceUri(parser_impl->reader);
+    return (axis2_char_t *)xmlTextReaderNamespaceUri(parser_impl->reader);
 }                    
                     
 axis2_char_t* AXIS2_CALL
@@ -922,7 +922,7 @@
     if(!prefix || AXIS2_STRCMP(prefix, "" ) == 0)
         return NULL;
     
-    return xmlTextReaderLookupNamespace(parser_impl->reader, prefix);        
+    return (axis2_char_t *)xmlTextReaderLookupNamespace(parser_impl->reader, prefix);        
 }                                                                   
 
 axis2_status_t axis2_libxml2_reader_wrapper_fill_maps(axis2_xml_reader_t *parser,

Modified: webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_writer_wrapper.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_writer_wrapper.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_writer_wrapper.c (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_writer_wrapper.c Tue Apr 18 01:54:01 2006
@@ -1499,13 +1499,13 @@
                                          axis2_char_t *uri)
 {
     axis2_bool_t is_declared = AXIS2_FALSE;
-    axis2_char_t *key = NULL;
     
     AXIS2_ENV_CHECK( env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK((*env)->error, uri, AXIS2_FAILURE);
     if(AXIS2_STRCMP(uri, "") == 0)
         return AXIS2_FAILURE;
-    is_declared = axis2_libxml2_writer_wrapper_is_namespace_declared(writer, env, uri);    if(!is_declared)
+    is_declared = axis2_libxml2_writer_wrapper_is_namespace_declared(writer, env, uri); 
+    if(!is_declared)
     {
         return axis2_libxml2_writer_wrapper_push(writer, env, uri, NULL);
     }        
@@ -1586,9 +1586,7 @@
            ele = (uri_prefix_element_t *)value;
            if(NULL != writer_impl->uri_prefix_map && NULL != ele->key)
            {
-                axis2_char_t *prefix = NULL;
                 void *val = NULL;
-                
                 val = axis2_hash_get(writer_impl->uri_prefix_map, ele->key, 
                         AXIS2_HASH_KEY_STRING);
                 if(NULL != val)
@@ -1663,7 +1661,6 @@
     writer_impl = AXIS2_INTF_TO_IMPL(writer);
     if(NULL != writer_impl->uri_prefix_map && NULL != key)
     {
-        axis2_char_t *pre = NULL;
         void *ret = NULL;
         ret = axis2_hash_get(writer_impl->uri_prefix_map, key, 
                 AXIS2_HASH_KEY_STRING);
@@ -1893,4 +1890,4 @@
         }
     }
     return NULL;
-}                                                                                                                           
\ No newline at end of file
+}                                                                                                                           

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap11_builder_helper.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap11_builder_helper.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap11_builder_helper.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap11_builder_helper.c Tue Apr 18 01:54:01 2006
@@ -18,14 +18,14 @@
  #include <axis2_om_stax_builder.h>
  #include <axis2_soap_builder.h>
  #include <axis2_soap.h>
- #include <_axis2_soap_fault_code.h>
- #include <_axis2_soap_fault_value.h>
- #include <_axis2_soap_fault_reason.h>
- #include <_axis2_soap_fault.h>
- #include <_axis2_soap_body.h>
- #include <_axis2_soap_fault_detail.h>
+ #include "_axis2_soap_fault_code.h"
+ #include "_axis2_soap_fault_value.h"
+ #include "_axis2_soap_fault_reason.h"
+ #include "_axis2_soap_fault.h"
+ #include "_axis2_soap_body.h"
+ #include "_axis2_soap_fault_detail.h"
  #include <axis2_soap_fault_text.h>
- #include <_axis2_soap_fault_role.h>
+ #include "_axis2_soap_fault_role.h"
  #include <axis2_om_stax_builder_internal.h>
  #include <axis2_om_node_internal.h>
  

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c Tue Apr 18 01:54:01 2006
@@ -16,18 +16,18 @@
  
  #include <axis2_soap12_builder_helper.h>
  #include <axis2_array_list.h>
- #include <_axis2_soap_body.h>
- #include <_axis2_soap_fault.h>
- #include <_axis2_soap_envelope.h>
+ #include "_axis2_soap_body.h"
+ #include "_axis2_soap_fault.h"
+ #include "_axis2_soap_envelope.h"
  #include <axis2_soap_message.h>
- #include <_axis2_soap_fault_code.h>
- #include <_axis2_soap_fault_sub_code.h>
- #include <_axis2_soap_fault_node.h>
- #include <_axis2_soap_fault_detail.h>
- #include <_axis2_soap_fault_reason.h>
- #include <_axis2_soap_fault_role.h>
- #include <_axis2_soap_fault_value.h>
- #include <_axis2_soap_fault_text.h>
+ #include "_axis2_soap_fault_code.h"
+ #include "_axis2_soap_fault_sub_code.h"
+ #include "_axis2_soap_fault_node.h"
+ #include "_axis2_soap_fault_detail.h"
+ #include "_axis2_soap_fault_reason.h"
+ #include "_axis2_soap_fault_role.h"
+ #include "_axis2_soap_fault_value.h"
+ #include "_axis2_soap_fault_text.h"
 
 /********************* impl struct ********************************************/
  

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_body.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_body.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_body.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_body.c Tue Apr 18 01:54:01 2006
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
  
- #include <_axis2_soap_envelope.h>
- #include <_axis2_soap_body.h>
+ #include "_axis2_soap_envelope.h"
+ #include "_axis2_soap_body.h"
  #include <axis2_hash.h>
  #include <axis2_soap.h>
  #include <axis2_soap_builder.h>

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c Tue Apr 18 01:54:01 2006
@@ -16,15 +16,15 @@
  
  #include <axis2_soap_builder.h>
  #include <axis2_soap_message.h>
- #include <_axis2_soap_envelope.h>
- #include <_axis2_soap_header.h>
+ #include "_axis2_soap_envelope.h"
+ #include "_axis2_soap_header.h"
  #include <axis2_soap11_builder_helper.h>
  #include <axis2_soap12_builder_helper.h>
  #include <axis2_soap.h>
- #include <_axis2_soap_body.h>
- #include <_axis2_soap_header_block.h>
+ #include "_axis2_soap_body.h"
+ #include "_axis2_soap_header_block.h"
  #include <axis2_om_stax_builder_internal.h>
- #include <_axis2_soap_fault.h>
+ #include "_axis2_soap_fault.h"
  /*********************** impl struct *****************************************/
  
  typedef struct axis2_soap_builder_impl_t

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c Tue Apr 18 01:54:01 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
  
- #include <_axis2_soap_envelope.h>
+ #include "_axis2_soap_envelope.h"
  #include <axis2_soap_body.h>
  #include <axis2_soap_header.h>
  #include <axis2_soap_header_block.h>

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault.c Tue Apr 18 01:54:01 2006
@@ -13,9 +13,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
- #include <_axis2_soap_fault.h>
+ #include "_axis2_soap_fault.h"
  #include <axis2_soap.h>
- #include <_axis2_soap_body.h>
+ #include "_axis2_soap_body.h"
  #include <axis2_om_node.h>
  #include <axis2_om_element.h>
  #include <axis2_soap_fault_code.h>

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_code.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_code.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_code.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_code.c Tue Apr 18 01:54:01 2006
@@ -14,11 +14,11 @@
  * limitations under the License.
  */
  
- #include <_axis2_soap_fault_code.h>
+ #include "_axis2_soap_fault_code.h"
  #include <axis2_soap_fault_sub_code.h>
  #include <axis2_soap_fault_value.h>
  #include <axis2_soap_builder.h>
- #include <_axis2_soap_fault.h>
+ #include "_axis2_soap_fault.h"
 
  /***************** impl struct ***********************************************/
  

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_detail.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_detail.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_detail.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_detail.c Tue Apr 18 01:54:01 2006
@@ -14,10 +14,10 @@
  * limitations under the License.
  */
  
- #include <_axis2_soap_fault.h>
+ #include "_axis2_soap_fault.h"
  #include <axis2_om_element.h>
  #include <axis2_om_node.h>
- #include <_axis2_soap_fault_detail.h>
+ #include "_axis2_soap_fault_detail.h"
  
 /******************** impl struct ********************************************/
  

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_node.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_node.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_node.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_node.c Tue Apr 18 01:54:01 2006
@@ -14,10 +14,10 @@
  * limitations under the License.
  */
  
- #include <_axis2_soap_fault_node.h>
+ #include "_axis2_soap_fault_node.h"
  #include <axis2_om_node.h>
  #include <axis2_om_element.h>
- #include <_axis2_soap_fault.h>
+ #include "_axis2_soap_fault.h"
 
  /********************* impl struct *******************************************/
  

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_reason.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_reason.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_reason.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_reason.c Tue Apr 18 01:54:01 2006
@@ -15,7 +15,7 @@
  */
  
 #include <axis2_soap_fault_reason.h>
-#include <_axis2_soap_fault.h>
+#include "_axis2_soap_fault.h"
 #include <axis2_om_element.h>
 #include <axis2_soap_fault_text.h>
 #include <axis2_soap_builder.h>
@@ -481,4 +481,4 @@
         }
     }                    
     return AXIS2_FALSE;
-}                                                                 
\ No newline at end of file
+}                                                                 

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_role.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_role.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_role.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_role.c Tue Apr 18 01:54:01 2006
@@ -15,7 +15,7 @@
  */
  
  #include <axis2_soap_fault_role.h>
- #include <_axis2_soap_fault.h>
+ #include "_axis2_soap_fault.h"
  #include <axis2_soap_builder.h>
  #include <axis2_om_element.h>
  

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_sub_code.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_sub_code.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_sub_code.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_sub_code.c Tue Apr 18 01:54:01 2006
@@ -15,7 +15,7 @@
  */
  
  #include <axis2_soap_fault_sub_code.h>
- #include <_axis2_soap_fault_code.h>
+ #include "_axis2_soap_fault_code.h"
  #include <axis2_soap_fault_value.h>
  #include <axis2_soap_builder.h> 
  /********************** impl struct ******************************************/

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_text.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_text.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_text.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_text.c Tue Apr 18 01:54:01 2006
@@ -16,8 +16,8 @@
  
 #include <axis2_soap_fault.h>
 #include <axis2_om_element.h>
-#include <_axis2_soap_fault_text.h>
-#include <_axis2_soap_fault_reason.h>
+#include "_axis2_soap_fault_text.h"
+#include "_axis2_soap_fault_reason.h"
 #include <axis2_om_namespace.h>
 #include <axis2_qname.h>
 

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_fault_value.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_fault_value.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_fault_value.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_fault_value.c Tue Apr 18 01:54:01 2006
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
  #include <axis2_soap_fault_value.h>
- #include <_axis2_soap_fault_sub_code.h>
- #include <_axis2_soap_fault_code.h>
+ #include "_axis2_soap_fault_sub_code.h"
+ #include "_axis2_soap_fault_code.h"
  #include <axis2_om_element.h>
  #include <axis2_om_text.h>
  
@@ -302,4 +302,4 @@
         return AXIS2_OM_ELEMENT_SET_TEXT(om_ele, env, text, fault_value_impl->om_ele_node);
     }
     return AXIS2_FAILURE;
-}								
\ No newline at end of file
+}								

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_header.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_header.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_header.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_header.c Tue Apr 18 01:54:01 2006
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
  
- #include <_axis2_soap_envelope.h>
- #include <_axis2_soap_header.h>
+ #include "_axis2_soap_envelope.h"
+ #include "_axis2_soap_header.h"
  #include <axis2_soap_header_block.h>
  #include <axis2_hash.h>
  #include <axis2_soap.h>

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_header_block.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_header_block.c?rev=394887&r1=394886&r2=394887&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_header_block.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_header_block.c Tue Apr 18 01:54:01 2006
@@ -15,8 +15,8 @@
  */
  
 #include <axis2_soap.h> 
-#include <_axis2_soap_header_block.h>
-#include <_axis2_soap_header.h>
+#include "_axis2_soap_header_block.h"
+#include "_axis2_soap_header.h"
 #include <axis2_soap_envelope.h>
 #include <axis2_soap_builder.h>