diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-12-26 15:55:59 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-12-26 15:55:59 +0000 |
commit | d200c2051c92cc193fdebaabd9c4b80935f33496 (patch) | |
tree | 1534aad8ba29d75881ad6f4ab980fb04525b42f3 /TAO/tests/Reliable_Oneways | |
parent | c13d83545ee97972e556b1fdc6eb81c318435f76 (diff) | |
download | ATCD-d200c2051c92cc193fdebaabd9c4b80935f33496.tar.gz |
ChangeLogTag:Wed Dec 26 09:07:45 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
Diffstat (limited to 'TAO/tests/Reliable_Oneways')
-rw-r--r-- | TAO/tests/Reliable_Oneways/client.cpp | 4 | ||||
-rw-r--r-- | TAO/tests/Reliable_Oneways/server.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Reliable_Oneways/client.cpp b/TAO/tests/Reliable_Oneways/client.cpp index ea3ca82198a..97fd5efbe17 100644 --- a/TAO/tests/Reliable_Oneways/client.cpp +++ b/TAO/tests/Reliable_Oneways/client.cpp @@ -31,11 +31,11 @@ parse_args (int argc, char *argv[]) switch (c) { case 'k': - ior = get_opts.optarg; + ior = get_opts.opt_arg (); break; case 'i': - iterations = ACE_OS::atoi (get_opts.optarg); + iterations = ACE_OS::atoi (get_opts.opt_arg ()); break; case 'n': diff --git a/TAO/tests/Reliable_Oneways/server.cpp b/TAO/tests/Reliable_Oneways/server.cpp index 2475bfc8d22..0bff331018c 100644 --- a/TAO/tests/Reliable_Oneways/server.cpp +++ b/TAO/tests/Reliable_Oneways/server.cpp @@ -17,7 +17,7 @@ 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 '?': |