summaryrefslogtreecommitdiff
path: root/ACEXML
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-29 20:52:32 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-29 20:52:32 +0000
commite26a38135397a75322f6bc9943246b6f5ab33c25 (patch)
treeceebc97180fddea3f9f17d4d47cde92613b2b9fb /ACEXML
parent6d4bf0208b538c93ed8354b06f09d7c68a07576e (diff)
downloadATCD-e26a38135397a75322f6bc9943246b6f5ab33c25.tar.gz
ChangeLogTag:Wed May 29 20:16:48 UTC 2002 Don Hinton <dhinton@ieee.org>
Diffstat (limited to 'ACEXML')
-rw-r--r--ACEXML/apps/svcconf/Svcconf_Handler.cpp9
-rw-r--r--ACEXML/apps/svcconf/Svcconf_Handler.h2
2 files changed, 4 insertions, 7 deletions
diff --git a/ACEXML/apps/svcconf/Svcconf_Handler.cpp b/ACEXML/apps/svcconf/Svcconf_Handler.cpp
index 13eac87345c..aac67fab5bf 100644
--- a/ACEXML/apps/svcconf/Svcconf_Handler.cpp
+++ b/ACEXML/apps/svcconf/Svcconf_Handler.cpp
@@ -20,8 +20,7 @@ ACEXML_Svcconf_Handler::ACEXML_Svcconf_Handler (void)
: in_stream_def_ (0),
in_module_ (0),
stream_svc_type_ (0),
- stream_ (0),
- dll_handle_ (0)
+ stream_ (0)
{
// no-op
}
@@ -100,7 +99,6 @@ ACEXML_Svcconf_Handler::endElement (const ACEXML_Char *,
if (active_info->service_type () == ACE_Service_Type::STREAM)
{
this->stream_ = (ACE_Stream_Type *) stp;
- this->dll_handle_ = svc_dll.get_handle (1);
}
else
{
@@ -112,7 +110,7 @@ ACEXML_Svcconf_Handler::endElement (const ACEXML_Char *,
this->stream_svc_type_ =
ACE_Service_Config::create_service_type (this->stream_info_.name (),
this->stream_,
- this->dll_handle_,
+ svc_dll,
this->stream_info_.active ());
}
@@ -151,7 +149,7 @@ ACEXML_Svcconf_Handler::endElement (const ACEXML_Char *,
ACE_Service_Type *stype =
ACE_Service_Config::create_service_type (active_info->name (),
stp,
- svc_dll.get_handle (1),
+ svc_dll,
active_info->active ());
// @@ Check error here.
@@ -214,7 +212,6 @@ ACEXML_Svcconf_Handler::endElement (const ACEXML_Char *,
this->stream_info_.reset ();
this->stream_svc_type_ = 0;
this->stream_ = 0;
- this->dll_handle_ = 0;
}
else if (ACE_OS_String::strcmp (qName, ACE_TEXT ("stream")) == 0)
{
diff --git a/ACEXML/apps/svcconf/Svcconf_Handler.h b/ACEXML/apps/svcconf/Svcconf_Handler.h
index ede5cb1290f..8bdd1f0201c 100644
--- a/ACEXML/apps/svcconf/Svcconf_Handler.h
+++ b/ACEXML/apps/svcconf/Svcconf_Handler.h
@@ -294,7 +294,7 @@ private:
ACE_Service_Type *stream_svc_type_;
ACE_Stream_Type *stream_;
- ACE_SHLIB_HANDLE dll_handle_;
+ //ACE_SHLIB_HANDLE dll_handle_;
ACE_Parsed_Info parsed_info_;