summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriliyan <iliyan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-07-31 05:48:53 +0000
committeriliyan <iliyan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-07-31 05:48:53 +0000
commite31a45f0fa8db9de199fa4bc3cfd6a5caebba1b8 (patch)
tree237eac7921b4f2a838101c417f925f811c496f58
parent4356f618153ce111993b832dd7105a1567c86bf0 (diff)
downloadATCD-e31a45f0fa8db9de199fa4bc3cfd6a5caebba1b8.tar.gz
ChangeLogTag: Tue Jul 31 05:42:34 UTC 2007 Iliyan Jeliazkov <iliyan@ociweb.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tao/TAO_Server_Request.cpp4
2 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 69b85941223..a8934817703 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jul 31 05:42:34 UTC 2007 Iliyan Jeliazkov <iliyan@ociweb.com>
+
+ * tao/TAO_Server_Request.cpp:
+
+ Fixing a typo in the base initializers list, only affecting
+ no-interceptors builds.
+
Tue Jul 31 05:11:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Servant_Base.{h,cpp}:
diff --git a/TAO/tao/TAO_Server_Request.cpp b/TAO/tao/TAO_Server_Request.cpp
index 44ab5d9365e..00b0e5913a4 100644
--- a/TAO/tao/TAO_Server_Request.cpp
+++ b/TAO/tao/TAO_Server_Request.cpp
@@ -76,9 +76,9 @@ TAO_ServerRequest::TAO_ServerRequest (TAO_Pluggable_Messaging *mesg_base,
, interceptor_count_ (0)
, rs_pi_current_ (0)
, caught_exception_ (0)
- , reply_status_ (-1),
+ , reply_status_ (-1)
#endif /* TAO_HAS_INTERCEPTORS == 1 */
- transport_(transport) //already duplicated in TAO_Transport::process_parsed_messages ()
+ , transport_(transport) //already duplicated in TAO_Transport::process_parsed_messages ()
{
ACE_FUNCTION_TIMEPROBE (TAO_SERVER_REQUEST_START);
// No-op.