You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sandesha-dev@ws.apache.org by da...@apache.org on 2006/07/12 12:30:51 UTC

svn commit: r421226 - /webservices/sandesha/trunk/c/src/client/sequence_report.c

Author: damitha
Date: Wed Jul 12 03:30:50 2006
New Revision: 421226

URL: http://svn.apache.org/viewvc?rev=421226&view=rev
Log:
Changes due to name changes

Modified:
    webservices/sandesha/trunk/c/src/client/sequence_report.c

Modified: webservices/sandesha/trunk/c/src/client/sequence_report.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/client/sequence_report.c?rev=421226&r1=421225&r2=421226&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/client/sequence_report.c (original)
+++ webservices/sandesha/trunk/c/src/client/sequence_report.c Wed Jul 12 03:30:50 2006
@@ -114,8 +114,8 @@
                     sizeof(sandesha2_seq_report_impl_t));
 
     report_impl->completed_msgs = NULL;
-    report_impl->seq_status = SEQ_STATUS_UNKNOWN;
-    report_impl->seq_direction = SEQ_DIRECTION_UNKNOWN;
+    report_impl->seq_status = SANDESHA2_SEQ_STATUS_UNKNOWN;
+    report_impl->seq_direction = SANDESHA2_SEQ_DIRECTION_UNKNOWN;
 
     report_impl->report.ops = AXIS2_MALLOC(env->allocator, 
                     sizeof(sandesha2_seq_report_ops_t)); 
@@ -200,8 +200,8 @@
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     report_impl = SANDESHA2_INTF_TO_IMPL(report);
 
-    if (seq_status >= SEQ_STATUS_UNKNOWN && 
-            seq_status <= MAX_SEQ_STATUS) 
+    if (seq_status >= SANDESHA2_SEQ_STATUS_UNKNOWN && 
+            seq_status <= SANDESHA2_MAX_SEQ_STATUS) 
     {
         report_impl->seq_status = seq_status;
     }
@@ -219,8 +219,8 @@
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     report_impl = SANDESHA2_INTF_TO_IMPL(report);
 
-    if (seq_direction >= SEQ_DIRECTION_UNKNOWN && 
-            seq_direction <= MAX_SEQ_DIRECTION) 
+    if (seq_direction >= SANDESHA2_SEQ_DIRECTION_UNKNOWN && 
+            seq_direction <= SANDESHA2_MAX_SEQ_DIRECTION) 
     {
         report_impl->seq_direction = seq_direction;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org