summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2004-02-08 01:34:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2004-02-08 01:34:51 +0000
commit0e5b8e2d454127b17913abc662e7ed3f9fa2be0d (patch)
tree309dcf11048209994d10722a5f558de88dfbf1d9
parentc106727b5b83f0eac720902f4c1746a01540934d (diff)
downloadATCD-0e5b8e2d454127b17913abc662e7ed3f9fa2be0d.tar.gz
ChangeLogTag:Sat Feb 7 19:33:56 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ace/RMCast/README2
-rw-r--r--examples/RMCast/Send_File/Sender.cpp3
-rw-r--r--protocols/ace/RMCast/README2
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a46b2873cc2..af9905f44a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Feb 7 19:33:56 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
+
+ * examples/RMCast/Send_File/Sender.cpp (ACE_TMAIN):
+ Fixed a typo in the comments. Thanks to Olli Savia <ops@iki.fi>
+ for the patch.
+
Fri Feb 6 15:49:37 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_client.mpb:
diff --git a/ace/RMCast/README b/ace/RMCast/README
index 2dd0c5d9cfc..ed6b22bf1c6 100644
--- a/ace/RMCast/README
+++ b/ace/RMCast/README
@@ -33,7 +33,7 @@ Fragmentation : Fragment messages in smaller chunks
Reassembly : and ensure that the IOVMAX limit is not
: reached
----------------------------------------------------------------
-Tranport : Encapsulate the specific transport media
+Transport : Encapsulate the specific transport media
: such as TCP/IP, ATM, or shared memory
: Demuxes incoming data to the right chain
: Change control messages and data messages
diff --git a/examples/RMCast/Send_File/Sender.cpp b/examples/RMCast/Send_File/Sender.cpp
index 8699b5e017e..94d270dd4ee 100644
--- a/examples/RMCast/Send_File/Sender.cpp
+++ b/examples/RMCast/Send_File/Sender.cpp
@@ -32,7 +32,8 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
if (mcast_group.set (argv[2]) != 0)
{
ACE_ERROR_RETURN ((LM_ERROR,
- "Cannot read file <%s>\n", filename),
+ "Cannot setup multicast group <%s>\n",
+ argv[2]),
1);
}
diff --git a/protocols/ace/RMCast/README b/protocols/ace/RMCast/README
index 2dd0c5d9cfc..ed6b22bf1c6 100644
--- a/protocols/ace/RMCast/README
+++ b/protocols/ace/RMCast/README
@@ -33,7 +33,7 @@ Fragmentation : Fragment messages in smaller chunks
Reassembly : and ensure that the IOVMAX limit is not
: reached
----------------------------------------------------------------
-Tranport : Encapsulate the specific transport media
+Transport : Encapsulate the specific transport media
: such as TCP/IP, ATM, or shared memory
: Demuxes incoming data to the right chain
: Change control messages and data messages