summaryrefslogtreecommitdiff
path: root/tests/Bug_1020_Regression/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Bug_1020_Regression/client.cpp')
-rw-r--r--tests/Bug_1020_Regression/client.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/Bug_1020_Regression/client.cpp b/tests/Bug_1020_Regression/client.cpp
index e3096eb4c3b..770c576efd9 100644
--- a/tests/Bug_1020_Regression/client.cpp
+++ b/tests/Bug_1020_Regression/client.cpp
@@ -4,13 +4,10 @@
#include "ORB_Task.h"
#include "tao/Messaging/Messaging.h"
#include "tao/AnyTypeCode/Any.h"
-#include "tao/Utils/Servant_Var.h"
#include "tao/ORB_Core.h"
#include "ace/Get_Opt.h"
#include "ace/Reactor.h"
-ACE_RCSID(Bug_1230_Regression, client, "$Id$")
-
const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");
int
@@ -73,7 +70,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
if (parse_args (argc, argv) != 0)
return 1;
- TAO::Utils::Servant_Var<Echo> impl;
+ PortableServer::Servant_var<Echo> impl;
{
Echo * tmp = 0;
// ACE_NEW_RETURN is the worst possible way to handle
@@ -165,7 +162,7 @@ parse_args (int argc, ACE_TCHAR *argv[])
argv [0]),
-1);
}
- // Indicates sucessful parsing of the command line
+ // Indicates successful parsing of the command line
return 0;
}