summaryrefslogtreecommitdiff
path: root/TAO/utils/catior
diff options
context:
space:
mode:
authorgthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-01 21:56:04 +0000
committergthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-01 21:56:04 +0000
commitc2f7ccbafb195635fcaf163f16fabc4ba7a28cde (patch)
tree441e22f4416a78a4ba5b437b8bf3c9f41ada568f /TAO/utils/catior
parent5cee4bbd2dd616ba9a19bb47d2d7c095086a8d7b (diff)
downloadATCD-c2f7ccbafb195635fcaf163f16fabc4ba7a28cde.tar.gz
ChangeLogTag: Thu May 01 21:55:00 UTC 2003 Gautam Thaker <gthaker@atl.lmco.com>
Diffstat (limited to 'TAO/utils/catior')
-rw-r--r--TAO/utils/catior/catior.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/TAO/utils/catior/catior.cpp b/TAO/utils/catior/catior.cpp
index 0685ce543e3..b90d50ea3f6 100644
--- a/TAO/utils/catior/catior.cpp
+++ b/TAO/utils/catior/catior.cpp
@@ -126,10 +126,8 @@ catiiop (char* string
static CORBA::Boolean
cat_iiop_profile (TAO_InputCDR& cdr);
-#if 0
static CORBA::Boolean
cat_sciop_profile (TAO_InputCDR& cdr);
-#endif /*if 0*/
static CORBA::Boolean
cat_uiop_profile (TAO_InputCDR& cdr);
@@ -268,19 +266,12 @@ catior (char* str
continue_decoding = cat_iiop_profile (stream);
ACE_DEBUG ((LM_DEBUG, "%}"));
}
-
-// the SCIOR decoding is disabled in the main branch. This will be
-// enabled when SCTP_O branch is merged in.
-// gthaker@atl.lmco.com, Feb 11, 2003.
-#if 0
else if (tag == TAO_TAG_SCIOP_PROFILE)
{
ACE_DEBUG ((LM_DEBUG, "%{"));
continue_decoding = cat_sciop_profile (stream);
ACE_DEBUG ((LM_DEBUG, "%}"));
}
-#endif
-
else if (tag == TAO_TAG_UIOP_PROFILE)
{
ACE_DEBUG ((LM_DEBUG, "%{"));
@@ -1135,7 +1126,6 @@ cat_uiop_profile (TAO_InputCDR& stream)
return 1;
}
-#if 0
static CORBA::Boolean
cat_sciop_profile (TAO_InputCDR& stream)
{
@@ -1226,4 +1216,3 @@ cat_sciop_profile (TAO_InputCDR& stream)
return 1;
}
-#endif /*if 0*/