diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-25 16:12:24 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-25 16:12:24 +0000 |
commit | 68a54d8652f8e65d3fd4573bf084c4155ce5c56d (patch) | |
tree | 7b30efc0e9fa4ddde60c8d27f1de69d7cf9f2f9d | |
parent | 2a884682d852b3bedb31821ef112d8e80afa4f0b (diff) | |
download | ATCD-68a54d8652f8e65d3fd4573bf084c4155ce5c56d.tar.gz |
Thu May 25 11:09:24 2000 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 5 | ||||
-rw-r--r-- | TAO/tests/Smart_Proxies/client.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index c8401eec1d0..1b605a5fb32 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,8 @@ +Thu May 25 11:09:24 2000 Chad Elliott <elliott_c@ociweb.com> + + * tests/Smart_Proxies/client.cpp + Corrected the 'i' option in the parse_args function. + Wed May 24 20:48:51 2000 Yamuna Krishnamurthy <yamuna@cs.wustl.edu> * orbsvcs/tests/AVStreams/mpeg/source/mpeg_shared/Makefile: diff --git a/TAO/tests/Smart_Proxies/client.cpp b/TAO/tests/Smart_Proxies/client.cpp index ad165541fd6..818e5baa50c 100644 --- a/TAO/tests/Smart_Proxies/client.cpp +++ b/TAO/tests/Smart_Proxies/client.cpp @@ -27,7 +27,7 @@ const char *ior = "file://test.ior"; int parse_args (int argc, char *argv[]) { - ACE_Get_Opt get_opts (argc, argv, "i"); + ACE_Get_Opt get_opts (argc, argv, "i:"); int c; while ((c = get_opts ()) != -1) |