summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-17 01:37:37 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-17 01:37:37 +0000
commit7b8092939a1a9f53f4d4928860cb9c5567f252c8 (patch)
tree2bfce810f17b7b59d3aee653dcff699f2eb1b496
parent06ff07d61a19167557db793432a720b9ec3793fb (diff)
downloadATCD-7b8092939a1a9f53f4d4928860cb9c5567f252c8.tar.gz
*** empty log message ***
-rw-r--r--TAO/docs/releasenotes/index.html10
-rw-r--r--examples/IPC_SAP/FILE_SAP/client.cpp2
2 files changed, 7 insertions, 5 deletions
diff --git a/TAO/docs/releasenotes/index.html b/TAO/docs/releasenotes/index.html
index 1c6180d929c..0e74406e6b8 100644
--- a/TAO/docs/releasenotes/index.html
+++ b/TAO/docs/releasenotes/index.html
@@ -51,7 +51,8 @@ HREF="http://www.cs.wustl.edu/~schmidt/ACE_wrappers/TAO/VERSION">current release
<P> Current status: (As of Dec 16th, 1997.)
<UL>
<LI> Support for sequences of strings and object references
- added. However, it is not tested yet. </LI>
+ added. However, it is not tested yet so there may be some
+ bugs. We should have these fixed in a day or so. </LI>
<LI> Support for handling exceptions added. TAO does not use
direct C++ exceptions. Instead it uses the
@@ -113,7 +114,8 @@ HREF="http://www.cs.wustl.edu/~schmidt/ACE_wrappers/TAO/VERSION">current release
<LI> Some of the known bugs/incomplete tasks are:
<UL>
<LI>
- We need support for TIEs </LI>
+ We need support for ``TIEs'' (i.e., the object form
+ of the Adapter pattern). </LI>
<LI>
TypeCode generation for multidimensional arrays and
indirected typecodes is still a problem. </LI>
@@ -126,8 +128,8 @@ HREF="http://www.cs.wustl.edu/~schmidt/ACE_wrappers/TAO/VERSION">current release
<LI> Deal with names in the IDL definition that are C++
keywords. </LI>
- <LI> IDL is case insensitive. However, it looks like our
- front-end is case sensitive. Thanks to Anil Gopinath
+ <LI> IDL is case-insensitive. However, it looks like our
+ front-end is case-sensitive. Thanks to Anil Gopinath
(anil@ittc.ukans.edu) for pointing this out. </LI>
<LI> tao_idl generates code for a *.idl file only inside
diff --git a/examples/IPC_SAP/FILE_SAP/client.cpp b/examples/IPC_SAP/FILE_SAP/client.cpp
index da6e3487d94..9868bf813a7 100644
--- a/examples/IPC_SAP/FILE_SAP/client.cpp
+++ b/examples/IPC_SAP/FILE_SAP/client.cpp
@@ -31,7 +31,7 @@ main (int argc, char *argv[])
if (cli_file.get_info (&fileinfo) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "get_info"), 1);
else
- ACE_OS::printf ("fileinfo : mode = %o\nno of lines = %lu\nsize = %lu\n",
+ ACE_OS::printf ("fileinfo : mode = %o\nno of links = %lu\nsize = %lu\n",
fileinfo.mode_ & 0777,
fileinfo.nlink_,
fileinfo.size_);