summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Oneways/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Oneways/server.cpp')
-rw-r--r--TAO/tests/Big_Oneways/server.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Big_Oneways/server.cpp b/TAO/tests/Big_Oneways/server.cpp
index 0287285b12b..20111f3eabe 100644
--- a/TAO/tests/Big_Oneways/server.cpp
+++ b/TAO/tests/Big_Oneways/server.cpp
@@ -22,23 +22,23 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'o':
- ior_output_file = get_opts.optarg;
+ ior_output_file = get_opts.opt_arg ();
break;
case 'p':
- peer_count = ACE_OS::atoi (get_opts.optarg);
+ peer_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'b':
- payload_size = ACE_OS::atoi (get_opts.optarg);
+ payload_size = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'i':
- message_count = ACE_OS::atoi (get_opts.optarg);
+ message_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'n':
- thread_count = ACE_OS::atoi (get_opts.optarg);
+ thread_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case '?':