summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Concurrency_Service
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-26 15:55:59 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-26 15:55:59 +0000
commitd200c2051c92cc193fdebaabd9c4b80935f33496 (patch)
tree1534aad8ba29d75881ad6f4ab980fb04525b42f3 /TAO/orbsvcs/Concurrency_Service
parentc13d83545ee97972e556b1fdc6eb81c318435f76 (diff)
downloadATCD-d200c2051c92cc193fdebaabd9c4b80935f33496.tar.gz
ChangeLogTag:Wed Dec 26 09:07:45 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/Concurrency_Service')
-rw-r--r--TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp
index 736b88156d0..63dbdbb1b89 100644
--- a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp
+++ b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp
@@ -59,11 +59,11 @@ Concurrency_Service::parse_args (void)
TAO_debug_level++;
break;
case 'o': // output the IOR to a file
- this->ior_output_file_ = ACE_OS::fopen (get_opts.optarg, "w");
+ this->ior_output_file_ = ACE_OS::fopen (get_opts.opt_arg (), "w");
if (this->ior_output_file_ == 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Unable to open %s for writing: %p\n",
- get_opts.optarg), -1);
+ get_opts.opt_arg ()), -1);
break;
case 's':
this->use_naming_service_ = 0;