Author: pini
Date: Fri Mar 30 00:05:08 2007
New Revision: 523968

URL: http://svn.apache.org/viewvc?view=rev&rev=523968
Log:
Fixing jira issue 292

Modified:
    webservices/rampart/trunk/c/include/rp_includes.h
    webservices/rampart/trunk/c/test/c14n/test.c
    webservices/rampart/trunk/c/test/openssl/block_cipher_test.c
    webservices/rampart/trunk/c/test/openssl/rsa/test_rsa.c
    webservices/rampart/trunk/c/test/util/test_sha.c
    webservices/rampart/trunk/c/test/util/test_util.c

Modified: webservices/rampart/trunk/c/include/rp_includes.h
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/include/rp_includes.h?view=diff&rev=523968&r1=523967&r2=523968
==============================================================================
--- webservices/rampart/trunk/c/include/rp_includes.h (original)
+++ webservices/rampart/trunk/c/include/rp_includes.h Fri Mar 30 00:05:08 2007
@@ -20,7 +20,7 @@
 
 #include <stdio.h>
 #include <axis2_util.h>
-#include <axis2_allocator.h>
+#include <axutil_allocator.h>
 #include <axis2_string.h>
 #include <axis2_array_list.h>
 #include <axis2_const.h>

Modified: webservices/rampart/trunk/c/test/c14n/test.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/test/c14n/test.c?view=diff&rev=523968&r1=523967&r2=523968
==============================================================================
--- webservices/rampart/trunk/c/test/c14n/test.c (original)
+++ webservices/rampart/trunk/c/test/c14n/test.c Fri Mar 30 00:05:08 2007
@@ -18,7 +18,7 @@
 
 #include <stdio.h>
 #include <axis2_env.h>
-#include <axis2_allocator.h>
+#include <axutil_allocator.h>
 #include <axiom.h>
 #include <axiom_xml_reader.h>
 #include <axiom_stax_builder.h>
@@ -39,9 +39,9 @@
 
 /*int test2()
 {
-    axis2_allocator_t *allocator = NULL;
+    axutil_allocator_t *allocator = NULL;
     axis2_env_t *env = NULL;
-    allocator = axis2_allocator_init(NULL);
+    allocator = axutil_allocator_init(NULL);
     env = axis2_env_create(allocator);
 
     axiom_namespace_t *ns1 = axiom_namespace_create(env, "urn:ns1", "ns1");
@@ -52,7 +52,7 @@
 
 int test(int argc, char **argv)
 {
-    axis2_allocator_t *allocator = NULL;
+    axutil_allocator_t *allocator = NULL;
     axis2_env_t *env = NULL;
     
     axis2_char_t *file = NULL;
@@ -71,7 +71,7 @@
         return 1;
     }
 
-    allocator = axis2_allocator_init(NULL);
+    allocator = axutil_allocator_init(NULL);
     env = axis2_env_create(allocator);
     
     file = argv[1];

Modified: webservices/rampart/trunk/c/test/openssl/block_cipher_test.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/test/openssl/block_cipher_test.c?view=diff&rev=523968&r1=523967&r2=523968
==============================================================================
--- webservices/rampart/trunk/c/test/openssl/block_cipher_test.c (original)
+++ webservices/rampart/trunk/c/test/openssl/block_cipher_test.c Fri Mar 30 
00:05:08 2007
@@ -30,7 +30,7 @@
 
 axis2_env_t *test_init()
 {
-    axis2_allocator_t *allocator = axis2_allocator_init(NULL);
+    axutil_allocator_t *allocator = axis2_allocator_init(NULL);
     axis2_error_t *error = (axis2_error_t*)axis2_error_create(allocator);
     axis2_env_t *env = axis2_env_create_with_error(allocator, error);
     return env;

Modified: webservices/rampart/trunk/c/test/openssl/rsa/test_rsa.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/test/openssl/rsa/test_rsa.c?view=diff&rev=523968&r1=523967&r2=523968
==============================================================================
--- webservices/rampart/trunk/c/test/openssl/rsa/test_rsa.c (original)
+++ webservices/rampart/trunk/c/test/openssl/rsa/test_rsa.c Fri Mar 30 00:05:08 
2007
@@ -28,7 +28,7 @@
 
 axis2_env_t *test_init()
 {
-    axis2_allocator_t *allocator = axis2_allocator_init(NULL);
+    axutil_allocator_t *allocator = axis2_allocator_init(NULL);
     axis2_error_t *error = (axis2_error_t*)axis2_error_create(allocator);
     axis2_env_t *env = axis2_env_create_with_error(allocator, error);
     return env;

Modified: webservices/rampart/trunk/c/test/util/test_sha.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/test/util/test_sha.c?view=diff&rev=523968&r1=523967&r2=523968
==============================================================================
--- webservices/rampart/trunk/c/test/util/test_sha.c (original)
+++ webservices/rampart/trunk/c/test/util/test_sha.c Fri Mar 30 00:05:08 2007
@@ -6,7 +6,7 @@
 
 axis2_env_t *test_init()
 {
-    axis2_allocator_t *allocator = axis2_allocator_init(NULL);
+    axutil_allocator_t *allocator = axis2_allocator_init(NULL);
     axis2_error_t *error = (axis2_error_t*)axis2_error_create(allocator);
     axis2_env_t *env = axis2_env_create_with_error(allocator, error);
     return env;

Modified: webservices/rampart/trunk/c/test/util/test_util.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/test/util/test_util.c?view=diff&rev=523968&r1=523967&r2=523968
==============================================================================
--- webservices/rampart/trunk/c/test/util/test_util.c (original)
+++ webservices/rampart/trunk/c/test/util/test_util.c Fri Mar 30 00:05:08 2007
@@ -7,7 +7,7 @@
 
 axis2_env_t *test_init()
 {
-    axis2_allocator_t *allocator = axis2_allocator_init(NULL);
+    axutil_allocator_t *allocator = axis2_allocator_init(NULL);
     axis2_error_t *error = (axis2_error_t*)axis2_error_create(allocator);
     axis2_env_t *env = axis2_env_create_with_error(allocator, error);
     return env;


Reply via email to