summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-27 19:05:56 +0000
committerjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-27 19:05:56 +0000
commit55b22af17828465c00e8d6899bda69c23145a002 (patch)
tree0e69521c6f551729dabbfa2a178309fffaef845e
parentfc2a5406ed43d7f61637d694c385d2f501055caa (diff)
downloadATCD-55b22af17828465c00e8d6899bda69c23145a002.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98b8
-rw-r--r--docs/tutorials/015/Recv.cpp2
-rw-r--r--docs/tutorials/015/page22.html8
3 files changed, 13 insertions, 5 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index a8c92164275..abf5c3de092 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,11 @@
+Tue Oct 27 14:16:27 1998 James CE Johnson <jcej@chiroptera.tragus.org>
+
+ * docs/tutorials/015/Recv.cpp : Changed atoi() to ACE_OS::atoi()
+ * docs/tutorials/015/page22.html: Ensure that the correct cpp
+ and header files are HREF'd
+
+ Thanks to Susan Leibskind <shl@cc.gatech.edu> for catching these.
+
Tue Oct 27 12:31:28 1998 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.i (cond_timedwait): Made sure the broadcaster always gets
diff --git a/docs/tutorials/015/Recv.cpp b/docs/tutorials/015/Recv.cpp
index a8f284a76ef..f2b06875a9a 100644
--- a/docs/tutorials/015/Recv.cpp
+++ b/docs/tutorials/015/Recv.cpp
@@ -62,7 +62,7 @@ int Recv::recv(ACE_Message_Block * message, ACE_Time_Value *timeout)
}
while( msize[b++] != 0 );
- int size = atoi(msize);
+ int size = ACE_OS::atoi(msize);
// Make a block big enough to contain the data we'll read
message = new ACE_Message_Block( size );
diff --git a/docs/tutorials/015/page22.html b/docs/tutorials/015/page22.html
index 90843ab2d31..47bff6fc2a4 100644
--- a/docs/tutorials/015/page22.html
+++ b/docs/tutorials/015/page22.html
@@ -53,13 +53,13 @@ Here's the complete file list:
<P>
<LI><A HREF="Makefile.client">client Makefile</A>
<LI><A HREF="client.cpp">client.cpp</A>
-<LI><A HREF="Client.h">Client.h</A>
-<LI><A HREF="Client.cpp">Client.cpp</A>
+<LI><A HREF="Client_i.h">Client_i.h</A>
+<LI><A HREF="Client_i.cpp">Client_i.cpp</A>
<P>
<LI><A HREF="Makefile.server">Server Makefile</A>
<LI><A HREF="server.cpp">server.cpp</A>
-<LI><A HREF="Server.h">Server.h</A>
-<LI><A HREF="Server.cpp">Server.cpp</A>
+<LI><A HREF="Server_i.h">Server_i.h</A>
+<LI><A HREF="Server_i.cpp">Server_i.cpp</A>
<LI><A HREF="Handler.h">Handler.h</A>
<LI><A HREF="Handler.cpp">Handler.cpp</A>
<P>