diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-12 03:37:51 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-12 03:37:51 +0000 |
commit | f324b831958855fb9f9f8030d9ae9fadcb410b82 (patch) | |
tree | b7abff4feff6894c93ec2ec491fcc93a0df9199c /ace/Strategies_T.cpp | |
parent | b28d9da6e806044a8f8079cc902d3b295b4d484f (diff) | |
download | ATCD-f324b831958855fb9f9f8030d9ae9fadcb410b82.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Strategies_T.cpp')
-rw-r--r-- | ace/Strategies_T.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Strategies_T.cpp b/ace/Strategies_T.cpp index 990f58529be..613d0359be1 100644 --- a/ace/Strategies_T.cpp +++ b/ace/Strategies_T.cpp @@ -164,10 +164,10 @@ ACE_DLL_Strategy<SVC_HANDLER>::make_svc_handler (SVC_HANDLER *&sh) if (svc_handler != 0) { - // Create an ACE_Service_Record containing the SVC_Handler and + // Create an ACE_Service_Type containing the SVC_Handler and // insert into this->svc_rep_; - ACE_Service_Type stp = + ACE_Service_Type_Impl stp = new ACE_Service_Object_Type (svc_handler, this->svc_name_); if (stp == 0) @@ -176,8 +176,8 @@ ACE_DLL_Strategy<SVC_HANDLER>::make_svc_handler (SVC_HANDLER *&sh) return -1; } - ACE_Service_Record *srp = - new ACE_Service_Record (this->svc_name_, stp, handle, 1); + ACE_Service_Type *srp = + new ACE_Service_Type (this->svc_name_, stp, handle, 1); if (srp == 0) { |