diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-14 02:28:41 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-14 02:28:41 +0000 |
commit | 42c1247914d346bb14c71f9709c1f64119b08eb1 (patch) | |
tree | 498b06687b60a462a2ce40c7c3e7970a29acfa2f /TAO | |
parent | 5600fe9eb28f355e33805a7b6f60faf806ad5f92 (diff) | |
download | ATCD-42c1247914d346bb14c71f9709c1f64119b08eb1.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog-98c | 7 | ||||
-rw-r--r-- | TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c index 9035db4702a..eea29795cf4 100644 --- a/TAO/ChangeLog-98c +++ b/TAO/ChangeLog-98c @@ -1,3 +1,10 @@ +Thu Nov 13 19:11:36 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu> + + * TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp (parse_args): Assume for + the moment that any arguments starting with `-O' are `-ORB' or + `-OA'. This should be fixed by having the ORB_init() and + POA_init() methods consume their argv/argc's. + Thu Nov 13 16:18:32 1997 <nw1@CHA-CHA> * tao/TAO.mak: diff --git a/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp b/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp index c716c0b1467..3514c5453d4 100644 --- a/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp +++ b/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp @@ -38,6 +38,9 @@ parse_args (int argc, char *argv[]) case 'n': // number of cubit objects we hold num_of_objs = ACE_OS::atoi (get_opts.optarg); break; + case 'O': + // Assume this is an -ORB or -OA option... + break; case '?': default: ACE_ERROR_RETURN ((LM_ERROR, |