summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-12-09 15:27:09 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-12-09 15:27:09 +0000
commitfaf5a5db9f652ee895dc2da91c422738f991a7d3 (patch)
treed026072baf0e650cce19c8dfcc2f00a4394efc33
parentfe417dac557e51716796c0f69ee649da7e53b734 (diff)
downloadATCD-faf5a5db9f652ee895dc2da91c422738f991a7d3.tar.gz
ChangeLogTag: Mon Dec 9 10:26:07 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/tao/IIOP_Connection_Handler.cpp3
-rw-r--r--TAO/tao/IIOP_Transport.cpp2
3 files changed, 12 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 4e46ecce0c4..25215b752de 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Mon Dec 9 10:26:07 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
+
+ * tao/IIOP_Transport.cpp (recv_i): Fixed a small error in the
+ debug statement. Thanks to Duane Binder for pointing this out.
+
+ * tao/IIOP_Connection_Handler.cpp: Initialized dscp_codepoint_ in
+ the second constructor. This was observed by Ossama, Duane
+ Binder and me. I decided to check this in.
+
Thu Dec 5 20:45:49 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* orbsvcs/orbsvcs/Event_Utilities.cpp (event_debug): Print out the
diff --git a/TAO/tao/IIOP_Connection_Handler.cpp b/TAO/tao/IIOP_Connection_Handler.cpp
index 0e116beafbd..ae6ef32ed71 100644
--- a/TAO/tao/IIOP_Connection_Handler.cpp
+++ b/TAO/tao/IIOP_Connection_Handler.cpp
@@ -43,7 +43,8 @@ TAO_IIOP_Connection_Handler::TAO_IIOP_Connection_Handler (TAO_ORB_Core *orb_core
: TAO_IIOP_SVC_HANDLER (orb_core->thr_mgr (), 0, 0),
TAO_Connection_Handler (orb_core),
tcp_properties_ (*(ACE_static_cast
- (TAO_IIOP_Properties *, arg)))
+ (TAO_IIOP_Properties *, arg))),
+ dscp_codepoint_ (0)
{
TAO_IIOP_Transport* specific_transport = 0;
ACE_NEW(specific_transport,
diff --git a/TAO/tao/IIOP_Transport.cpp b/TAO/tao/IIOP_Transport.cpp
index 9249b2845f2..34b9ae70bfd 100644
--- a/TAO/tao/IIOP_Transport.cpp
+++ b/TAO/tao/IIOP_Transport.cpp
@@ -111,7 +111,7 @@ TAO_IIOP_Transport::recv_i (char *buf,
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("TAO (%P|%t) - IIOP_Transport[%d]::recv_i, "),
- ACE_TEXT ("read failure - %p"),
+ ACE_TEXT ("read failure - %m"),
this->id ()));
}